diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-03-26 13:10:15 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-03-26 13:10:15 +0000 |
commit | c71e4075e713f3357464263b281922f3172d2b7b (patch) | |
tree | 2c41e7e9668249f98c4ef9b2ece4ca3e4dd73abd /ext/Errno/Makefile.PL | |
parent | c3e2aceb2caa065cca4f6a38699147c12083a7f1 (diff) | |
download | perl-c71e4075e713f3357464263b281922f3172d2b7b.tar.gz |
Remove now-redundant references to MAN3PODS in core modules' Makefile.PLs.
Diffstat (limited to 'ext/Errno/Makefile.PL')
-rw-r--r-- | ext/Errno/Makefile.PL | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/Errno/Makefile.PL b/ext/Errno/Makefile.PL index 9f5b3e77b6..cc45afbfa2 100644 --- a/ext/Errno/Makefile.PL +++ b/ext/Errno/Makefile.PL @@ -1,8 +1,6 @@ use ExtUtils::MakeMaker; use Config; -@VMS = ($^O eq 'VMS') ? (MAN3PODS => {}) : (); - my $arch = "$Config{'archname'}-$Config{'osvers'}"; my $got = ""; if (-e 'arch.txt') { @@ -24,7 +22,6 @@ if ($got ne $arch) { WriteMakefile( NAME => 'Errno', VERSION_FROM => 'Errno_pm.PL', - MAN3PODS => {}, # Pods will be built by installman. PL_FILES => {'Errno_pm.PL'=>'Errno.pm'}, PM => {'Errno.pm' => '$(INST_LIBDIR)/Errno.pm'}, 'clean' => {FILES => 'Errno.pm arch.txt'}, @@ -33,7 +30,6 @@ WriteMakefile( SUFFIX => '.gz', DIST_DEFAULT => 'd/Errno.pm tardist', }, - @VMS, ); sub MY::postamble { |