summaryrefslogtreecommitdiffstats
path: root/helper
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2010-11-06 10:46:17 +0000
committerRichard W.M. Jones <rjones@redhat.com>2010-11-06 11:11:00 +0000
commit2cfee8d4762ffa1ec2566e8c5e94d790c62c5b30 (patch)
tree5bf8defca08f4b0d6a8a8f89288ff6c7261a239b /helper
parentf0a635f49dcfdf91a436e931a7ec1ae1340fcf31 (diff)
downloadfebootstrap-2cfee8d4762ffa1ec2566e8c5e94d790c62c5b30.tar.gz
febootstrap-2cfee8d4762ffa1ec2566e8c5e94d790c62c5b30.tar.xz
febootstrap-2cfee8d4762ffa1ec2566e8c5e94d790c62c5b30.zip
elf-default-arch should exit with an error if it fails.
Diffstat (limited to 'helper')
-rwxr-xr-xhelper/elf-default-arch1
1 files changed, 1 insertions, 0 deletions
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