From: Richard W.M. Jones Date: Sat, 6 Nov 2010 10:46:17 +0000 (+0000) Subject: elf-default-arch should exit with an error if it fails. X-Git-Tag: 2.11~2 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=2cfee8d4762ffa1ec2566e8c5e94d790c62c5b30;p=febootstrap.git elf-default-arch should exit with an error if it fails. --- diff --git a/helper/elf-default-arch b/helper/elf-default-arch index 38bf536..54af14d 100755 --- a/helper/elf-default-arch +++ b/helper/elf-default-arch @@ -28,4 +28,5 @@ case $(uname -m) in ppc64) echo "elf64-powerpc powerpc" ;; *) echo "This architecture is not recognized. Please update helper/elf-default-arch." + exit 1 esac