No need to set MAN3PODS now that make_ext.pl takes care of this for us.
Nicholas Clark [Thu, 26 Mar 2009 11:06:39 +0000 (11:06 +0000)]
ext/Module-Pluggable/Makefile.PL

index cd05af8..e1e9001 100644 (file)
@@ -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 => {}) : (),
         )
 ;