diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-04-05 11:45:36 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-04-05 11:45:36 +0000 |
commit | 9fdbfc113dab517e9adaec9b2bdb304801f9ed20 (patch) | |
tree | 77be8b63febaf484bb055549adbf6ae1aaf13863 /ext/XS | |
parent | 9f1f04a17d93e8b8afa26e6ca9144732df879671 (diff) | |
download | perl-9fdbfc113dab517e9adaec9b2bdb304801f9ed20.tar.gz |
The manpages don't have to be built by MakeMaker for the
core modules in ext/. Disable this in Devel::PPPort (not
up-to-date on CPAN), Unicode::Normalize (the CPAN version
uses a different Makefile.PL anyway) and XS::APItest
(not CPANized.)
p4raw-id: //depot/perl@19145
Diffstat (limited to 'ext/XS')
-rw-r--r-- | ext/XS/APItest/Makefile.PL | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/XS/APItest/Makefile.PL b/ext/XS/APItest/Makefile.PL index 6e6cb496ff..4ff940394a 100644 --- a/ext/XS/APItest/Makefile.PL +++ b/ext/XS/APItest/Makefile.PL @@ -14,6 +14,7 @@ WriteMakefile( 'INC' => '-I.', # e.g., '-I. -I/usr/include/other' # Un-comment this if you add C files to link with later: # 'OBJECT' => '$(O_FILES)', # link all the C files too + MAN3PODS => {}, # Pods will be built by installman. ); sub MY::install { "install ::\n" }; |