From: Nicholas Clark Date: Thu, 26 Mar 2009 11:06:39 +0000 (+0000) Subject: No need to set MAN3PODS now that make_ext.pl takes care of this for us. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b81ac31e6a791bfd9ae36eb2b2f2fb2b18e370ba;p=p5sagit%2Fp5-mst-13.2.git No need to set MAN3PODS now that make_ext.pl takes care of this for us. --- diff --git a/ext/Module-Pluggable/Makefile.PL b/ext/Module-Pluggable/Makefile.PL index cd05af8..e1e9001 100644 --- a/ext/Module-Pluggable/Makefile.PL +++ b/ext/Module-Pluggable/Makefile.PL @@ -12,8 +12,6 @@ my %dodgy_files = ( catfile(qw(EditorJunk Plugin .#Bar.pm)) => 'EditorJunk::Bar', ); -my $core = grep { $_ eq 'PERL_CORE=1' } @ARGV; - my @files; unless (grep { lc($^O) eq $_ } qw(vms vos)) { foreach my $test (keys %dodgy_files) { @@ -41,7 +39,5 @@ WriteMakefile 'INSTALLDIRS' => ($] >= 5.008009) ? "perl" : "site", 'PL_FILES' => {}, 'realclean' => {FILES=> join ' ', @files}, - # In the core pods will be built by installman. - $core ? (MAN3PODS => {}) : (), ) ;