From: vibi sreenivasan Date: Fri, 3 Jul 2009 06:21:54 +0000 (+0530) Subject: [geniso] Emit proper error message for incorrect location of ISOLINUX_BIN X-Git-Tag: v0.9.8~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6e30618c246a22b27765260f4ed13c24b18182d;p=thirdparty%2Fipxe.git [geniso] Emit proper error message for incorrect location of ISOLINUX_BIN If isolinux.bin is not installed in the expected location the error message shown is slightly misleading. Signed-off-by: Vibi Sreenivasan Signed-off-by: Michael Brown --- diff --git a/src/util/geniso b/src/util/geniso index 57e47471e..7c2f76726 100755 --- a/src/util/geniso +++ b/src/util/geniso @@ -17,7 +17,7 @@ esac isolinux_bin=${ISOLINUX_BIN:-util/isolinux.bin} if [ ! -r $isolinux_bin ] then - echo $0: $isolinux_bin not found, please install, or set ISOLINUX_BIN in arch/i386/config correctly + echo $0: $isolinux_bin not found, please install, or set ISOLINUX_BIN in arch/i386/Makefile correctly exit 1 fi out=$1