In perl.git, the branch smoke-me/jkeenan/io-compress-sync has been updated <http://perl5.git.perl.org/perl.git/commitdiff/c722d1d2080853ca4f8ef6587ef4b692f74e1bb5?hp=bfdd04a0cae641a350593cc24cd3a3842e051465>
- Log ----------------------------------------------------------------- commit c722d1d2080853ca4f8ef6587ef4b692f74e1bb5 Author: James E Keenan <[email protected]> Date: Thu Mar 9 08:47:32 2017 -0500 Comment out "use lib '.';" in 3 Makefile.PLs. During 'make', miniperl attempts to build cpan/IO-Compress before it attempts to build dist/lib. Consequently, the 'lib' pragma is not yet available at the point when cpan/IO-Compress/Makefile.PL is run (by make_ext.pl). Commenting out this 'use lib' got past the miniperl failure. For consistency, I commented out the 'use lib' statements in the Makefile.PLs for Compress-Raw-Bzip2 and Compress-Raw-Zlib as well. 'make' completed and all tests passed. Note that this was done without the CUSTOMIZED array in IO-Compress in Porting/Maintainers.pl. ----------------------------------------------------------------------- Summary of changes: cpan/Compress-Raw-Bzip2/Makefile.PL | 2 +- cpan/Compress-Raw-Zlib/Makefile.PL | 2 +- cpan/IO-Compress/Makefile.PL | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpan/Compress-Raw-Bzip2/Makefile.PL b/cpan/Compress-Raw-Bzip2/Makefile.PL index 246259d335..1cd7294b30 100644 --- a/cpan/Compress-Raw-Bzip2/Makefile.PL +++ b/cpan/Compress-Raw-Bzip2/Makefile.PL @@ -3,7 +3,7 @@ use strict ; require 5.006 ; -use lib '.'; +#use lib '.'; use private::MakeUtil; use ExtUtils::MakeMaker 5.16 ; diff --git a/cpan/Compress-Raw-Zlib/Makefile.PL b/cpan/Compress-Raw-Zlib/Makefile.PL index 028f550c24..fcbaf39542 100644 --- a/cpan/Compress-Raw-Zlib/Makefile.PL +++ b/cpan/Compress-Raw-Zlib/Makefile.PL @@ -3,7 +3,7 @@ use strict ; require 5.006 ; -use lib '.'; +#use lib '.'; use private::MakeUtil; use ExtUtils::MakeMaker 5.16 ; use ExtUtils::Install (); # only needed to check for version diff --git a/cpan/IO-Compress/Makefile.PL b/cpan/IO-Compress/Makefile.PL index 59b708face..c579df1e14 100644 --- a/cpan/IO-Compress/Makefile.PL +++ b/cpan/IO-Compress/Makefile.PL @@ -5,7 +5,7 @@ require 5.006 ; $::VERSION = '2.074' ; -use lib '.'; +#use lib '.'; use private::MakeUtil; use ExtUtils::MakeMaker 5.16 ; -- Perl5 Master Repository
