As we're not passing over (or copying in) a NUL, don't need that extra
[p5sagit/p5-mst-13.2.git] / 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,
 );