Change 19160 by [EMAIL PROTECTED] on 2003/04/07 04:17:38
Time::HiRes: Do not create files in blib directories under core
(from Rafael)
Affected files ...
... //depot/perl/ext/Time/HiRes/Makefile.PL#9 edit
Differences ...
==== //depot/perl/ext/Time/HiRes/Makefile.PL#9 (text) ====
Index: perl/ext/Time/HiRes/Makefile.PL
--- perl/ext/Time/HiRes/Makefile.PL#8~19121~ Tue Apr 1 08:36:02 2003
+++ perl/ext/Time/HiRes/Makefile.PL Sun Apr 6 21:17:38 2003
@@ -408,6 +408,10 @@
realclean => {FILES=> 'const-c.inc const-xs.inc'},
);
+ if ($ENV{PERL_CORE}) {
+ push @makefileopts, MAN3PODS => {};
+ }
+
WriteMakefile(@makefileopts);
}
End of Patch.