From 3d0742f216c3d11c5356a13c277aacb5932b906b Mon Sep 17 00:00:00 2001 From: freesource Date: Tue, 24 Jul 2001 03:57:46 +0000 Subject: [PATCH] Better error info. when missing important binaries. --- Yard.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Yard.pm b/Yard.pm index 0a5fccc..13bbc31 100644 --- a/Yard.pm +++ b/Yard.pm @@ -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; }