* Print a warning if files cannot be found.

svn path=/nixpkgs/trunk/; revision=8476
This commit is contained in:
Eelco Dolstra 2007-03-29 09:23:47 +00:00
parent 705e87fe0f
commit 19d0e47320

View File

@ -28,6 +28,11 @@ while (scalar @workset > 0) {
$doneset{$fn} = 1;
if (!-e "$fn") {
print STDERR "cannot access `$fn': $!\n" if !$!{ENOENT};
next;
}
next unless -e "$fn";