1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-22 00:23:28 -05:00

Better error info. when missing important binaries.

This commit is contained in:
freesource 2001-07-24 03:57:46 +00:00
parent d885b953ee
commit 3d0742f216

View File

@ -1271,6 +1271,9 @@ sub find_file_in_path {
my($abs_file) = "$dir/$file";
return $abs_file if -e $abs_file;
}
if ( !-e "$path[$#path]/$file") {
info(1,"gBootRoot Error: Couldn't find $file\n");
}
undef;
}