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
master
malc 2008-07-24 17:51:36 +00:00
parent a69abbe0b3
commit ba69a08a9d
1 changed files with 2 additions and 1 deletions

3
configure vendored
View File

@ -648,10 +648,11 @@ EOF
case $? in case $? in
4) hostlongbits="32";; 4) hostlongbits="32";;
8) hostlongbits="64";; 8) hostlongbits="64";;
*) echo "Couldn't determine bits per long value";; *) echo "Couldn't determine bits per long value"; exit 1;;
esac esac
else else
echo hostlongbits test failed echo hostlongbits test failed
exit 1
fi fi
fi fi