diff options
author | Steve Hay <SteveHay@planit.com> | 2006-03-17 11:10:41 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-03-17 11:10:41 +0000 |
commit | e65df1b633afd7252686e25cbbe95678c897e99b (patch) | |
tree | f90ecd3d2f6b4a3ef48d1fbfad600d2095024c87 /installperl | |
parent | cad5770baea7f83c8716f298d13255e7d95f9c68 (diff) | |
download | perl-e65df1b633afd7252686e25cbbe95678c897e99b.tar.gz |
Install POD files into "lib\pods" rather than "lib\pod" on Win32
to avoid clashing with "lib\Pod" (cf. perl change #26363)
Also remove a couple of unused macros from the makefiles
p4raw-link: @26363 on //depot/perl: 0661f42382c6c9047f6bb741b9d41f6f7333902f
p4raw-id: //depot/perl@27530
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index 919fc648bd..76d299d215 100755 --- a/installperl +++ b/installperl @@ -602,7 +602,7 @@ if ($versiononly) { # Install pod pages. Where? I guess in $installprivlib/pod # ($installprivlib/pods for cygwin). -my $pod = ($Is_Cygwin || $Is_Darwin || $Is_VMS) ? 'pods' : 'pod'; +my $pod = ($Is_Cygwin || $Is_Darwin || $Is_VMS || $Is_W32) ? 'pods' : 'pod'; if ( !$versiononly || ($installprivlib =~ m/\Q$ver/)) { mkpath("${installprivlib}/$pod", $verbose, 0777); |