summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2014-12-03 15:49:15 +0000
committerDavid Mitchell <davem@iabyn.com>2014-12-03 17:01:49 +0000
commit95a2e48fd5a4c8e221149d1c1de129f30eaeadce (patch)
tree0bb899196b73eecd5f6ee2242be8098ab0cb2643 /make_ext.pl
parent7e9deda3926b2444b9d169a6fcbb8dd4444c9b56 (diff)
downloadperl-95a2e48fd5a4c8e221149d1c1de129f30eaeadce.tar.gz
reinstate cpan/IO-Compress/Makefile.PL
This was removed a year ago, but it causes problems with ABSTACT and ABSTACT_FROM; since there isn't an IO/Compress.pm file. make_ext.pl special-cases Makefile.PL to get the abstract from IO/Compress/Base.pm; but MakeMaker looks for, and fails to find, 'IO::Compress - ...' in the pod for that file,and prints an error. Rather than more special-casing, it's easier to just restore the distribution's Makefile.PL, which already contains the correct 'ABSTRACT => ...' entry.
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl1
1 files changed, 0 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index e900874b7f..a237cb6cc4 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -368,7 +368,6 @@ 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 = $_;