From 9ac5eb64d274bdbd879ebb568a13f392d2a50575 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Mon, 7 Apr 2003 04:17:38 +0000 Subject: [PATCH 1/1] Time::HiRes: Do not create files in blib directories under core (from Rafael) p4raw-id: //depot/perl@19160 --- ext/Time/HiRes/Makefile.PL | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/Time/HiRes/Makefile.PL b/ext/Time/HiRes/Makefile.PL index 6e0ba43..aed03d9 100644 --- a/ext/Time/HiRes/Makefile.PL +++ b/ext/Time/HiRes/Makefile.PL @@ -408,6 +408,10 @@ sub doMakefile { realclean => {FILES=> 'const-c.inc const-xs.inc'}, ); + if ($ENV{PERL_CORE}) { + push @makefileopts, MAN3PODS => {}; + } + WriteMakefile(@makefileopts); } -- 1.8.3.1