diff options
author | Craig A. Berry <craigberry@mac.com> | 2000-12-17 07:09:28 -0600 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-17 22:30:58 +0000 |
commit | 1d4256c23995be071fb4d323eba17d79ae118a8d (patch) | |
tree | ae9c0f910cba08100a7b0a9326a9fc9f02238438 /vms | |
parent | c7d7d594589c9aa7add6d5624f5bac3a24aea38c (diff) | |
download | perl-1d4256c23995be071fb4d323eba17d79ae118a8d.tar.gz |
fix-up for VMS extensions
Message-Id: <p04330103b6628cabe114@[172.16.52.1]>
MAN.PODS => ' ' is naughty.
p4raw-id: //depot/perl@8155
Diffstat (limited to 'vms')
-rw-r--r-- | vms/ext/DCLsym/Makefile.PL | 2 | ||||
-rw-r--r-- | vms/ext/Stdio/Makefile.PL | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vms/ext/DCLsym/Makefile.PL b/vms/ext/DCLsym/Makefile.PL index 84ab2be2b5..28e2fa3758 100644 --- a/vms/ext/DCLsym/Makefile.PL +++ b/vms/ext/DCLsym/Makefile.PL @@ -1,4 +1,4 @@ use ExtUtils::MakeMaker; WriteMakefile( 'VERSION_FROM' => 'DCLsym.pm', - 'MAN3PODS' => ' '); + 'MAN3PODS' => {}); diff --git a/vms/ext/Stdio/Makefile.PL b/vms/ext/Stdio/Makefile.PL index f5599f8a96..4e17a48082 100644 --- a/vms/ext/Stdio/Makefile.PL +++ b/vms/ext/Stdio/Makefile.PL @@ -1,5 +1,5 @@ use ExtUtils::MakeMaker; WriteMakefile( 'VERSION_FROM' => 'Stdio.pm', - 'MAN3PODS' => ' ', # pods will be built later + 'MAN3PODS' => {}, # pods will be built later ); |