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 | bbda9c9dfd37377d27bf1335da1c51bc3b95ae4d (patch) | |
tree | e8f03e91e27f5b3dba43259c4f5fc4ee087b117b /installperl | |
parent | 273cf8d1f309172b4416e78e4a8e80c12d941254 (diff) | |
download | perl-bbda9c9dfd37377d27bf1335da1c51bc3b95ae4d.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++ |