diff options
author | Tim Jenness <tjenness@cpan.org> | 1999-05-20 03:27:02 -1000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 04:52:52 +0000 |
commit | cbadcae4e4f53b8eeb2aa1dd7b4a95e1efb3b915 (patch) | |
tree | a30eaab431433a6728b2036a2bd5ba0bb73a5671 | |
parent | 097b73fc5cb8bdbb798f77a57a98ef495774299a (diff) | |
download | perl-cbadcae4e4f53b8eeb2aa1dd7b4a95e1efb3b915.tar.gz |
Problem with MM_Unix in 5.005_03
Message-Id: <E10kcDN-0007TA-00@lapaki>
p4raw-id: //depot/perl@3454
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index f3af6e7b57..8642516385 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -2625,7 +2625,7 @@ sub parse_abstract { open(FH,$parsefile) or die "Could not open '$parsefile': $!"; my $inpod = 0; my $package = $self->{DISTNAME}; - $package =~ s/-/::/; + $package =~ s/-/::/g; while (<FH>) { $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod; next if !$inpod; |