diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | perl.prov | 6 | ||||
-rwxr-xr-x | perl.req | 5 |
3 files changed, 11 insertions, 3 deletions
@@ -2,7 +2,8 @@ by glibc for five years now and can safely be assumed that there's no longer any need for it, reducing ~8K packages' dependency on it during next rebuild. (Per Oyvind, mdv) -- perl.prov: sync with upstream rpm.org +- perl.prov: sync with upstream rpm.org: + o make perl.{req,prov} warn about unreadable files - use upstream fonconfig.prov as we had exactly the same file Version 1.147-12 - 24 Jul 2012, by Colin @@ -85,7 +85,11 @@ sub process_file { my ($file) = @_; - open(FILE, "<$file") || return; + if (!open(FILE, $file)) { + warn("$0: Warning: Could not open file '$file' for reading: $!\n"); + return; + } + my ($package, $version, $incomment, $inover) = (); @@ -77,7 +77,10 @@ sub process_file { my ($file) = @_; - open(FILE, "<$file") || return; + if (!open(FILE, $file)) { + warn("$0: Warning: Could not open file '$file' for reading: $!\n"); + return; + } while (<FILE>) { |