Change 31771 by [EMAIL PROTECTED] on 2007/08/31 13:16:42
Patch by Gerard Goosen to avoid building man pages for extensions
even if the Makefile.PL forgets to specify it.
Affected files ...
... //depot/perl/ext/util/make_ext#19 edit
Differences ...
==== //depot/perl/ext/util/make_ext#19 (text) ====
Index: perl/ext/util/make_ext
--- perl/ext/util/make_ext#18~31404~ 2007-06-17 07:48:11.000000000 -0700
+++ perl/ext/util/make_ext 2007-08-31 06:16:42.000000000 -0700
@@ -127,7 +127,7 @@
esac
if test ! -f $makefile ; then
- test -f Makefile.PL && $run ../$depth/miniperl -I../$depth/lib
Makefile.PL INSTALLDIRS=perl PERL_CORE=1 $passthru
+ test -f Makefile.PL && $run ../$depth/miniperl -I../$depth/lib
Makefile.PL INSTALLDIRS=perl INSTALLMAN3DIR=none PERL_CORE=1 $passthru
fi
if test ! -f $makefile ; then
echo "Warning: No Makefile!"
End of Patch.