diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 06:44:42 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 06:44:42 +0000 |
commit | eb4dae5d6c1c0938f2efcbe9fc0a1092ead20ebf (patch) | |
tree | caab5a83cad07f6fe3efa85385f4bc996ab12923 /installperl | |
parent | 2d99cf449de95ee0405e58140ae8e0a8da3c8367 (diff) | |
download | perl-eb4dae5d6c1c0938f2efcbe9fc0a1092ead20ebf.tar.gz |
consolidated VMS patches (from Craig A. Berry
<craig.berry@metamorgs.com>); Glob.pm patch modified to use
$DEFAULT_FLAGS, and iff no flags were supplied
p4raw-id: //depot/perl@5397
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index 387f4b3560..dd6d66394d 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. |