Problem with MM_Unix in 5.005_03
authorTim Jenness <tjenness@cpan.org>
Thu, 20 May 1999 13:27:02 +0000 (03:27 -1000)
committerGurusamy Sarathy <gsar@cpan.org>
Mon, 24 May 1999 04:52:52 +0000 (04:52 +0000)
Message-Id: <E10kcDN-0007TA-00@lapaki>

p4raw-id: //depot/perl@3454

lib/ExtUtils/MM_Unix.pm

index f3af6e7..8642516 100644 (file)
@@ -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;