summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure26
1 files changed, 13 insertions, 13 deletions
diff --git a/configure b/configure
index 54a894f675..6a6f022a30 100755
--- a/configure
+++ b/configure
@@ -1128,21 +1128,21 @@ EOF
cpuopt=-mcpu
fi
if test "$_runtime_cpudetection" = no ; then
- case "$pvendor" in
- AuthenticAMD)
- proc=k8;;
- GenuineIntel)
- case "$pmodel" in
- 6) proc=core2;;
+ case "$pvendor" in
+ AuthenticAMD)
+ proc=k8;;
+ GenuineIntel)
+ case "$pmodel" in
+ 6) proc=core2;;
+ *)
+ # 64-bit prescotts exist, but as far as GCC is concerned they
+ # have the same capabilities as a nocona.
+ proc=nocona;;
+ esac
+ ;;
*)
- # 64-bit prescotts exist, but as far as GCC is concerned they have the
- # same capabilities as a nocona.
- proc=nocona;;
+ proc=error;;
esac
- ;;
- *)
- proc=error;;
- esac
fi # test "$_runtime_cpudetection" = no
echocheck "GCC & CPU optimization abilities"