diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-24 17:51:36 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-24 17:51:36 +0000 |
commit | ba69a08a9dfb4fc1902c4c907774a5df1adaf5fc (patch) | |
tree | 9ddaed8409e894f5c7933e8b96f369db54b300e9 | |
parent | a69abbe0b3428a13c8225e1bd5ea3c938a9319af (diff) |
Do exit if test for hostlongbits on ppc64 fails
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4940 c046a42c-6fe2-441c-8c8c-71466251a162
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -648,10 +648,11 @@ EOF case $? in 4) hostlongbits="32";; 8) hostlongbits="64";; - *) echo "Couldn't determine bits per long value";; + *) echo "Couldn't determine bits per long value"; exit 1;; esac else echo hostlongbits test failed + exit 1 fi fi |