diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2001-06-21 06:44:05 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-21 13:49:47 +0000 |
commit | df39e595409b8d6860ded83a494dfcd41d2fa9ac (patch) | |
tree | 9c8fe6a17d810063bff7da952e975d5cbdc11425 /ext/PerlIO | |
parent | 791b4ad3d4885818274b272624d60d233f36ad2d (diff) | |
download | perl-df39e595409b8d6860ded83a494dfcd41d2fa9ac.tar.gz |
Unnecessary pod2man calls in new extensions
Message-ID: <Pine.SOL.4.10.10106211040180.26439-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@10784
Diffstat (limited to 'ext/PerlIO')
-rw-r--r-- | ext/PerlIO/Scalar/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/PerlIO/Via/Makefile.PL | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/PerlIO/Scalar/Makefile.PL b/ext/PerlIO/Scalar/Makefile.PL index 81fe5139e6..9d97e4adfc 100644 --- a/ext/PerlIO/Scalar/Makefile.PL +++ b/ext/PerlIO/Scalar/Makefile.PL @@ -1,6 +1,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => "PerlIO::Scalar", + MAN3PODS => {}, # Pods will be built by installman. VERSION_FROM => 'Scalar.pm', ); diff --git a/ext/PerlIO/Via/Makefile.PL b/ext/PerlIO/Via/Makefile.PL index 568008e4e6..d47ba9334e 100644 --- a/ext/PerlIO/Via/Makefile.PL +++ b/ext/PerlIO/Via/Makefile.PL @@ -1,6 +1,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => "PerlIO::Via", + MAN3PODS => {}, # Pods will be built by installman. VERSION_FROM => 'Via.pm', ); |