summaryrefslogtreecommitdiff
path: root/ext/Errno
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-15 02:46:08 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-15 02:46:08 +0000
commit69158f75613eae787b94b6b4c3c353cf740e0e09 (patch)
tree0d3520ecb38ae0aa476b8072f9abc9f384bc58a9 /ext/Errno
parent33b8ce059bff80913058d8738ead1314953634ba (diff)
downloadperl-69158f75613eae787b94b6b4c3c353cf740e0e09.tar.gz
correct bugs exposed in MM_Unix.pm by commenting out Selfloader
(MAN3PODS cannot be set to ' '; stray stricture violation) p4raw-id: //depot/perl@1967
Diffstat (limited to 'ext/Errno')
-rw-r--r--ext/Errno/Makefile.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Errno/Makefile.PL b/ext/Errno/Makefile.PL
index bb1467bbc8..604d4fb8e8 100644
--- a/ext/Errno/Makefile.PL
+++ b/ext/Errno/Makefile.PL
@@ -1,11 +1,11 @@
use ExtUtils::MakeMaker;
-@VMS = ($^O eq 'VMS') ? (MAN3PODS => ' ') : ();
+@VMS = ($^O eq 'VMS') ? (MAN3PODS => {}) : ();
WriteMakefile(
NAME => 'Errno',
VERSION_FROM => 'Errno_pm.PL',
- MAN3PODS => ' ', # Pods will be built by installman.
+ 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'},