summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-03-26 12:59:43 +0000
committerNicholas Clark <nick@ccl4.org>2009-03-26 12:59:43 +0000
commita2b175af9185c696d59408281024f1bec190b233 (patch)
tree4ba04a103b5194acfb1a9da3adc7ad2dff2d9522 /make_ext.pl
parentb81ac31e6a791bfd9ae36eb2b2f2fb2b18e370ba (diff)
downloadperl-a2b175af9185c696d59408281024f1bec190b233.tar.gz
make_ext.pl should also set INSTALLMAN1DIR=none when running Makefile.PL
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index d0dcfbfd99..22a97eb7af 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -291,7 +291,8 @@ EOM
my $libd = VMS::Filespec::vmspath($lib_dir);
push @args, "INST_LIB=$libd", "INST_ARCHLIB=$libd";
} else {
- push @args, 'INSTALLDIRS=perl', 'INSTALLMAN3DIR=none';
+ push @args, 'INSTALLDIRS=perl', 'INSTALLMAN1DIR=none',
+ 'INSTALLMAN3DIR=none';
}
push @args, @$pass_through;
_quote_args(\@args) if $is_VMS;