diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-01 05:33:14 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-01 05:33:14 +0000 |
commit | d9aad7f7caf6c1d42b8e71a2a04bfca6447d2827 (patch) | |
tree | dccc6636377483116741f280578188f0a4360f81 /ext | |
parent | 57b2e4523f4df782c055782388ac1aacff9603ef (diff) | |
parent | d132b95fb004c5e3d94e297d3804c90cfef96fed (diff) | |
download | perl-d9aad7f7caf6c1d42b8e71a2a04bfca6447d2827.tar.gz |
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@4606
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index 18260a9dca..75dacfc0bd 100644 --- a/ext/Errno/Errno_pm.PL +++ b/ext/Errno/Errno_pm.PL @@ -21,7 +21,7 @@ unlink "errno.c" if -f "errno.c"; sub process_file { my($file) = @_; - return unless defined $file; + return unless defined $file and -f $file; local *FH; if (($^O eq 'VMS') && ($Config{vms_cc_type} ne 'gnuc')) { |