From: Charles Bailey Date: Thu, 2 Mar 2000 03:39:46 +0000 (+0000) Subject: Warn but continue installing when file missing (Dan Sugalski) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e2e27d8c27676a7e69a6e6c43670ea920d84cef4;p=p5sagit%2Fp5-mst-13.2.git Warn but continue installing when file missing (Dan Sugalski) p4raw-id: //depot/vmsperl@5416 --- diff --git a/installperl b/installperl index 387f4b3..dd6d663 100755 --- a/installperl +++ b/installperl @@ -631,7 +631,7 @@ sub installlib { sub copy_if_diff { my($from,$to)=@_; return 1 if (($^O eq 'VMS') && (-d $from)); - -f $from || die "$0: $from not found"; + -f $from || warn "$0: $from not found"; $packlist->{$to} = { type => 'file' }; if (compare($from, $to) || $nonono) { safe_unlink($to); # In case we don't have write permissions.