diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-09 23:56:37 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-09 23:56:37 +0000 |
commit | 9fe7e163cad35624e7ca0b41ac42ad849f9787a9 (patch) | |
tree | e8f03e91e27f5b3dba43259c4f5fc4ee087b117b /installperl | |
parent | 2691ae0be125733dac5c1bb18f3f74bb652be8f6 (diff) | |
download | perl-9fe7e163cad35624e7ca0b41ac42ad849f9787a9.tar.gz |
more windows build tweaks
p4raw-id: //depot/perl@4774
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/installperl b/installperl index 0ddbf38bfb..dae86a5c0e 100755 --- a/installperl +++ b/installperl @@ -512,11 +512,13 @@ sub link { ? $success++ : ($from =~ m#^/afs/# || $to =~ m#^/afs/#) ? die "AFS" # okay inside eval {} - : warn "Couldn't link $from to $to: $!\n" + : die "Couldn't link $from to $to: $!\n" unless $nonono; $packlist->{$to} = { from => $from, type => 'link' }; }; if ($@) { + warn $@; + print " cp $from $to\n"; print " creating new version of $to\n" if $Is_VMS and -e $to; File::Copy::copy($from, $to) ? $success++ |