summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-08-09 09:23:02 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-08-09 09:23:02 +0000
commitdc5f10bbd2c8340a8fbe59586ff81766cc6dbcaf (patch)
tree1928fae7d28f09c311bec950bc0f68e8d3d759c6 /Porting
parentd51d469b4cbcda7d16d3e7418eac76e2fda7b012 (diff)
downloadperl-dc5f10bbd2c8340a8fbe59586ff81766cc6dbcaf.tar.gz
More fixes in the Module::Corelist data generation process
p4raw-id: //depot/perl@28679
Diffstat (limited to 'Porting')
-rw-r--r--Porting/corelist.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/Porting/corelist.pl b/Porting/corelist.pl
index 4609ee865e..f76928f721 100644
--- a/Porting/corelist.pl
+++ b/Porting/corelist.pl
@@ -21,12 +21,15 @@ find(sub {
and $1 eq 'ext'
and ( $module =~ s{^(.*)/lib/\1\b}{$1},
$module =~ s{(\w+)/\1\b}{$1},
+ $module =~ s{^B/O}{O},
$module =~ s{^Compress/IO/Base/lib/}{},
+ $module =~ s{^Compress/IO/Zlib/}{},
$module =~ s{^Devel/PPPort}{Devel},
$module =~ s{^Encode/encoding}{encoding},
- $module =~ s{^MIME/Base64/QuotedPrint}{MIME/QuotedPrint},
+ $module =~ s{^IPC/SysV/}{IPC/},
$module =~ s{^List/Util/lib/Scalar}{Scalar},
- $module =~ s{^(?:DynaLoader|Errno)/}{},
+ $module =~ s{^MIME/Base64/QuotedPrint}{MIME/QuotedPrint},
+ $module =~ s{^(?:DynaLoader|Errno|Opcode)/}{},
);
$module =~ s{/}{::}g;
$module =~ s/(\.pm|_pm\.PL)$//;