diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-23 10:32:25 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-25 08:27:44 +0100 |
commit | f6d098c6aa26a223a4250725da6a7784102e19a6 (patch) | |
tree | a2e104818aa67f49398811df6c23167f58a14320 /make_ext.pl | |
parent | b54f893dc956463c59f2f0ee0ec913515bacd4c1 (diff) | |
download | perl-f6d098c6aa26a223a4250725da6a7784102e19a6.tar.gz |
Remove some unnecessary Makefile.PLs from cpan/ and ext/
These modules all work with the default Makefile.PL written by make_ext.pl.
(There are more Makefile.PLs in dist/ that could be removed too, but the
general policy with dist/ is to leave such files in place to make it easier
to roll CPAN releases from the blead source, which is canonical.)
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/make_ext.pl b/make_ext.pl index 55fa5aec87..a5ece308a0 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -356,6 +356,7 @@ sub build_extension { my $leafname = "$leaf.pm"; my $pathname = join '/', @dirs, $leafname; my @locations = ($leafname, $pathname, "lib/$pathname"); + unshift @locations, 'lib/IO/Compress/Base.pm' if $mname eq 'IO::Compress'; foreach (@locations) { if (-f $_) { $fromname = $_; |