diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-03-26 13:12:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-03-26 13:12:09 +0000 |
commit | 12f277603d578753f14d6b26fb9880783d8d4ceb (patch) | |
tree | 2bd5b96d3e0455048bf55a5251849f480f4213b5 /ext/threads | |
parent | c71e4075e713f3357464263b281922f3172d2b7b (diff) | |
download | perl-12f277603d578753f14d6b26fb9880783d8d4ceb.tar.gz |
Remove MAN3PODS and NORECURS from Makefile.PLs where blead is canonical.
Diffstat (limited to 'ext/threads')
-rwxr-xr-x | ext/threads/Makefile.PL | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/threads/Makefile.PL b/ext/threads/Makefile.PL index 908a4145d3..b251797a42 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 |