aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvibi sreenivasan <vibi_sreenivasan@cms.com>2009-07-03 11:51:54 +0530
committerMichael Brown <mcb30@etherboot.org>2009-08-09 00:05:49 +0100
commite6e30618c246a22b27765260f4ed13c24b18182d (patch)
tree08bff8d2f3e8ffa1db05c95c655954c1b6bc5af8
parent34bfc04e4c2ea74a025994fc37c83d640942a651 (diff)
downloadipxe-e6e30618c246a22b27765260f4ed13c24b18182d.zip
ipxe-e6e30618c246a22b27765260f4ed13c24b18182d.tar.gz
ipxe-e6e30618c246a22b27765260f4ed13c24b18182d.tar.bz2
[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 <vibi_sreenivasan@cms.com> Signed-off-by: Michael Brown <mcb30@etherboot.org>
-rwxr-xr-xsrc/util/geniso2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/geniso b/src/util/geniso
index 57e4747..7c2f767 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