From: Nicholas Clark Date: Thu, 26 Mar 2009 13:12:09 +0000 (+0000) Subject: Remove MAN3PODS and NORECURS from Makefile.PLs where blead is canonical. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=12f277603d578753f14d6b26fb9880783d8d4ceb;p=p5sagit%2Fp5-mst-13.2.git Remove MAN3PODS and NORECURS from Makefile.PLs where blead is canonical. --- diff --git a/ext/Data-Dumper/Makefile.PL b/ext/Data-Dumper/Makefile.PL index 1548c75..0d900fb 100644 --- a/ext/Data-Dumper/Makefile.PL +++ b/ext/Data-Dumper/Makefile.PL @@ -7,7 +7,6 @@ WriteMakefile( SUFFIX => 'gz', DIST_DEFAULT => 'all tardist', }, - MAN3PODS => {}, ( (grep { $_ eq 'PERL_CORE=1' } @ARGV) ? () diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL index 985f56d..b840b39 100644 --- a/ext/Storable/Makefile.PL +++ b/ext/Storable/Makefile.PL @@ -11,7 +11,6 @@ use Config; WriteMakefile( NAME => 'Storable', DISTNAME => "Storable", - MAN3PODS => {}, # We now ship this in t/ # PREREQ_PM => { 'Test::More' => '0.41' }, INSTALLDIRS => $] >= 5.007 ? 'perl' : 'site', diff --git a/ext/threads-shared/Makefile.PL b/ext/threads-shared/Makefile.PL index 2626ad6..7856617 100755 --- a/ext/threads-shared/Makefile.PL +++ b/ext/threads-shared/Makefile.PL @@ -46,11 +46,7 @@ sub have_cc # Build options for different environments my @conditional_params; -if (grep { $_ eq 'PERL_CORE=1' } @ARGV) { - # Core - push(@conditional_params, 'MAN3PODS' => {}); - -} else { +if (not grep { $_ eq 'PERL_CORE=1' } @ARGV) { # CPAN # Verify that a 'C' compiler is available diff --git a/ext/threads/Makefile.PL b/ext/threads/Makefile.PL index 908a414..b251797 100755 --- a/ext/threads/Makefile.PL +++ b/ext/threads/Makefile.PL @@ -46,11 +46,7 @@ sub have_cc # Build options for different environments my @conditional_params; -if (grep { $_ eq 'PERL_CORE=1' } @ARGV) { - # Core - push(@conditional_params, 'MAN3PODS' => {}, - 'NORECURS' => 1); -} else { +if (not grep { $_ eq 'PERL_CORE=1' } @ARGV) { # CPAN # Verify that a 'C' compiler is available