From: Nicholas Clark Date: Fri, 12 Jun 2009 20:29:07 +0000 (+0100) Subject: Update perlmodlib.PL to accomodate the re-arranging of the directories in ext/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f46c3222734e09c1a00b3e18a028820a02e16926;p=p5sagit%2Fp5-mst-13.2.git Update perlmodlib.PL to accomodate the re-arranging of the directories in ext/ (Only a few months behind the times - better late than never.) --- diff --git a/pod/perlmodlib.PL b/pod/perlmodlib.PL index 39e9613..cec7845 100644 --- a/pod/perlmodlib.PL +++ b/pod/perlmodlib.PL @@ -71,6 +71,7 @@ for (@MANIFEST) { $perlname =~ s!\.p(m|od)$!!; $perlname =~ s!\b(\w+)/\1\b!$1!; $perlname =~ s!/!::!g; + $perlname =~ s!-!::!g; # modules with non standard locations $perlname =~ s{Base64::QuotedPrint}{QuotedPrint};