Commit ba69a08a9dfb4fc1902c4c907774a5df1adaf5fc
1 parent
a69abbe0
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
Showing
1 changed file
with
2 additions
and
1 deletions
configure
... | ... | @@ -648,10 +648,11 @@ EOF |
648 | 648 | case $? in |
649 | 649 | 4) hostlongbits="32";; |
650 | 650 | 8) hostlongbits="64";; |
651 | - *) echo "Couldn't determine bits per long value";; | |
651 | + *) echo "Couldn't determine bits per long value"; exit 1;; | |
652 | 652 | esac |
653 | 653 | else |
654 | 654 | echo hostlongbits test failed |
655 | + exit 1 | |
655 | 656 | fi |
656 | 657 | fi |
657 | 658 | ... | ... |