diff options
author | nick@babyhippo.com <nick@babyhippo.com> | 2000-10-04 13:06:45 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-04 11:53:44 +0000 |
commit | 55a105fde08b8ff7e431e93257b2fe180eb0327d (patch) | |
tree | 262b6e7e09f1dddbe86d688320cee5e51562fb2c /installperl | |
parent | f08cbdd1c4c30753f0b3b06d9c4ae199518e065a (diff) | |
download | perl-55a105fde08b8ff7e431e93257b2fe180eb0327d.tar.gz |
[ID 20001004.003] installman "Ambiguous call resolved as CORE::"
Message-Id: <20001004120645.A7356@babyhippo.com>
Retract 7118 and 7135.
p4raw-id: //depot/perl@7140
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/installperl b/installperl index 07c9bba250..c65af5afa9 100755 --- a/installperl +++ b/installperl @@ -511,7 +511,7 @@ sub safe_unlink { sub safe_rename { my($from,$to) = @_; - if (-f $to and not &unlink($to)) { + if (-f $to and not unlink($to)) { my($i); for ($i = 1; $i < 50; $i++) { last if rename($to, "$to.$i"); @@ -520,7 +520,7 @@ sub safe_rename { if $i >= 50; # Give up! } link($from,$to) || return 0; - &unlink($from); + unlink($from); } sub link { @@ -625,16 +625,16 @@ sub installlib { #but we have to delete old *.al and *.ix files from the 5.000 #distribution: #This might not work because $archname might have changed. - &unlink("$installarchlib/$name"); + unlink("$installarchlib/$name"); } $packlist->{"$installlib/$name"} = { type => 'file' }; if (compare($_, "$installlib/$name") || $nonono) { - &unlink("$installlib/$name"); + unlink("$installlib/$name"); mkpath("$installlib/$dir", $verbose, 0777); # HP-UX (at least) needs to maintain execute permissions # on dynamically-loaded libraries. copy_if_diff($_, "$installlib/$name") - and &chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, + and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, "$installlib/$name"); } } |