diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-28 20:56:33 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-28 20:56:33 +0000 |
commit | 75bcf1899e8275bcac04d68ecdf62058b65d6d52 (patch) | |
tree | d76d703d7e566178c5aba1fdedc609f9b85dc93e /installperl | |
parent | 7f8b76ef3705a4badf70b188ead155771f7d30c6 (diff) | |
download | perl-75bcf1899e8275bcac04d68ecdf62058b65d6d52.tar.gz |
VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
p4raw-id: //depot/perl@6008
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installperl b/installperl index b2ddc84c24..09ffc806dd 100755 --- a/installperl +++ b/installperl @@ -254,9 +254,9 @@ else { mkpath("$installarchlib/CORE", 1, 0777); my @corefiles; if ($Is_VMS) { # We did core file selection during build - my $coredir = "lib/$Config{'arch'}/$ver"; + my $coredir = "lib/$Config{archname}/$ver/CORE"; $coredir =~ tr/./_/; - @corefiles = map { s|^$coredir/||i; } <$coredir/*.*>; + map { s|^$coredir/||i; } @corefiles = <$coredir/*.*>; } else { # [als] hard-coded 'libperl' name... not good! |