This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Time::HiRes: Do not create files in blib directories under core
[perl5.git]
/
ext
/
Time
/
HiRes
/
Makefile.PL
diff --git
a/ext/Time/HiRes/Makefile.PL
b/ext/Time/HiRes/Makefile.PL
index
6e0ba43
..
aed03d9
100644
(file)
--- 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'},
);
realclean => {FILES=> 'const-c.inc const-xs.inc'},
);
+ if ($ENV{PERL_CORE}) {
+ push @makefileopts, MAN3PODS => {};
+ }
+
WriteMakefile(@makefileopts);
}
WriteMakefile(@makefileopts);
}