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 | 0185066f9a43dc5a4d6cf84b0d34d31afa12c47d (patch) | |
tree | d76d703d7e566178c5aba1fdedc609f9b85dc93e /installperl | |
parent | db517d64b5c27f7ee15c1fc304765222f07ff643 (diff) | |
download | perl-0185066f9a43dc5a4d6cf84b0d34d31afa12c47d.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! |