Don't let MakeMaker install doc for MIME::Base64
Rafael Garcia-Suarez [Sun, 27 Nov 2005 23:18:38 +0000 (23:18 +0000)]
(since installpod does it already)

p4raw-id: //depot/perl@26217

ext/MIME/Base64/Makefile.PL

index d7e0784..f676159 100644 (file)
@@ -1,10 +1,17 @@
 require 5.006;
 use ExtUtils::MakeMaker;
 
+my @makefileopts;
+if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
+    push @makefileopts, MAN3PODS => {};
+}
+if ($] >= 5.008) {
+    push @makefileopts, INSTALLDIRS => 'perl';
+}
+
 WriteMakefile(
     NAME        => 'MIME::Base64',
     VERSION_FROM => 'Base64.pm',
     dist         => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-    ($] >= 5.008) ?
-      (INSTALLDIRS => 'perl') : (),
+    @makefileopts,
 );