diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-07 15:13:03 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-07 15:13:03 +0000 |
commit | f506ffab3a9790503594078dbe049cd53fe08007 (patch) | |
tree | 0570351da3aa58aae66357b82c178fb2619c66e4 | |
parent | 9cacd1508ab6dfd5b786918d94ab177dfbc213d8 (diff) | |
download | perl-f506ffab3a9790503594078dbe049cd53fe08007.tar.gz |
Don't build manpages for Encode and Unicode::Normalize
(when compiling perl manpages are built afterwards, not
by MakeMaker like when installing modules.) This fix a
bootstrap problem (now that Pod::Man uses POSIX.)
p4raw-id: //depot/perl@26295
-rw-r--r-- | ext/Encode/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/Unicode/Normalize/Makefile.PL | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/Encode/Makefile.PL b/ext/Encode/Makefile.PL index 58b307b1b6..d4049ca190 100644 --- a/ext/Encode/Makefile.PL +++ b/ext/Encode/Makefile.PL @@ -36,6 +36,7 @@ WriteMakefile( SUFFIX => 'gz', DIST_DEFAULT => 'all tardist', }, + MAN1PODS => {}, MAN3PODS => {}, INC => "-I./Encode", PMLIBDIRS => \@pmlibdirs, diff --git a/ext/Unicode/Normalize/Makefile.PL b/ext/Unicode/Normalize/Makefile.PL index ae920dc5ab..ab4bd038b8 100644 --- a/ext/Unicode/Normalize/Makefile.PL +++ b/ext/Unicode/Normalize/Makefile.PL @@ -27,4 +27,5 @@ WriteMakefile( Test => 0, warnings => 0, }, + 'MAN3PODS' => {}, ); |