Time::HiRes: Do not create files in blib directories under core
authorJarkko Hietaniemi <jhi@iki.fi>
Mon, 7 Apr 2003 04:17:38 +0000 (04:17 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 7 Apr 2003 04:17:38 +0000 (04:17 +0000)
(from Rafael)

p4raw-id: //depot/perl@19160

ext/Time/HiRes/Makefile.PL

index 6e0ba43..aed03d9 100644 (file)
@@ -408,6 +408,10 @@ sub doMakefile {
         realclean => {FILES=> 'const-c.inc const-xs.inc'},
     );
 
+    if ($ENV{PERL_CORE}) {
+       push @makefileopts, MAN3PODS => {};
+    }
+
     WriteMakefile(@makefileopts);
 }