diff options
author | vibi sreenivasan <vibi_sreenivasan@cms.com> | 2009-07-03 11:51:54 +0530 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2009-08-09 00:05:49 +0100 |
commit | e6e30618c246a22b27765260f4ed13c24b18182d (patch) | |
tree | 08bff8d2f3e8ffa1db05c95c655954c1b6bc5af8 | |
parent | 34bfc04e4c2ea74a025994fc37c83d640942a651 (diff) | |
download | ipxe-e6e30618c246a22b27765260f4ed13c24b18182d.tar.gz |
[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-x | src/util/geniso | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/geniso b/src/util/geniso index 57e47471..7c2f7672 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 |