From: Tim Jenness Date: Thu, 20 May 1999 13:27:02 +0000 (-1000) Subject: Problem with MM_Unix in 5.005_03 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cbadcae4e4f53b8eeb2aa1dd7b4a95e1efb3b915;p=p5sagit%2Fp5-mst-13.2.git Problem with MM_Unix in 5.005_03 Message-Id: p4raw-id: //depot/perl@3454 --- diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index f3af6e7..8642516 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 () { $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod; next if !$inpod;