diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-10 21:09:30 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-10 21:09:30 +0000 |
commit | 22e779421fc9644bbe208a576056f86ee9e45388 (patch) | |
tree | d289a9facf96ad7b2d755e12d926639d58f0ca7f /installperl | |
parent | 7bd40e2617d77c8e973207f8d6ca5f9eca71162b (diff) | |
download | perl-22e779421fc9644bbe208a576056f86ee9e45388.tar.gz |
Use the versiononly instead of the installscripts,
retract the changes 7146 and 7147.
p4raw-id: //depot/perl@7195
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/installperl b/installperl index b027d02705..c65af5afa9 100755 --- a/installperl +++ b/installperl @@ -364,30 +364,26 @@ if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) { chmod(0755, "$installbin/cppstdin"); } -if ($Config{installscripts} eq 'define') { - # Install scripts. +# Install scripts. - mkpath($installscript, $verbose, 0777); +mkpath($installscript, $verbose, 0777); - if (! $versiononly) { - for (@scripts) { - (my $base = $_) =~ s#.*/##; - copy($_, "$installscript/$base"); - chmod(0755, "$installscript/$base"); - } +if (! $versiononly) { + for (@scripts) { + (my $base = $_) =~ s#.*/##; + copy($_, "$installscript/$base"); + chmod(0755, "$installscript/$base"); } +} - # pstruct should be a link to c2ph - - if (! $versiononly) { - safe_unlink("$installscript/pstruct$scr_ext"); - if ($^O eq 'dos' or $Is_VMS or $^O eq 'transit') { - copy("$installscript/c2ph$scr_ext", - "$installscript/pstruct$scr_ext"); - } else { - link("$installscript/c2ph$scr_ext", - "$installscript/pstruct$scr_ext"); - } +# pstruct should be a link to c2ph + +if (! $versiononly) { + safe_unlink("$installscript/pstruct$scr_ext"); + if ($^O eq 'dos' or $Is_VMS or $^O eq 'transit') { + copy("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext"); + } else { + link("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext"); } } |