diff options
author | Craig A. Berry <craigberry@mac.com> | 2005-12-15 03:59:21 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2005-12-15 03:59:21 +0000 |
commit | 0661f42382c6c9047f6bb741b9d41f6f7333902f (patch) | |
tree | 1ac857089e0b41a0b60f5c18ac9222c475780bef /installperl | |
parent | 8535f7f6ae50d0da357b4c25ec59ab4a2213bd76 (diff) | |
download | perl-0661f42382c6c9047f6bb741b9d41f6f7333902f.tar.gz |
On VMS, put pods in [.lib.pods] rather than [.lib.pod]
in order to avoid collisions with [.lib.Pod]
p4raw-id: //depot/perl@26363
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index ddf739d4a3..6a20e7122c 100755 --- a/installperl +++ b/installperl @@ -577,7 +577,7 @@ if ($versiononly) { # Install pod pages. Where? I guess in $installprivlib/pod # ($installprivlib/pods for cygwin). -my $pod = ($Is_Cygwin || $Is_Darwin) ? 'pods' : 'pod'; +my $pod = ($Is_Cygwin || $Is_Darwin || $Is_VMS) ? 'pods' : 'pod'; if ( !$versiononly || ($installprivlib =~ m/\Q$ver/)) { mkpath("${installprivlib}/$pod", $verbose, 0777); |