From 8c58ec3c370f6e592a94b3a359c70ecb0532f09c Mon Sep 17 00:00:00 2001
From: unknown <msvensson@neptunus.(none)>
Date: Mon, 9 May 2005 14:49:27 +0200
Subject: Fixes after review

BUILD/check-cpu:
  Change variable name
  Add missing fi
  Test with -n instead of -z
---
 BUILD/check-cpu | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

(limited to 'BUILD')

diff --git a/BUILD/check-cpu b/BUILD/check-cpu
index d50a83a5475..dfdf96d6b29 100755
--- a/BUILD/check-cpu
+++ b/BUILD/check-cpu
@@ -34,7 +34,7 @@ else
 fi
 
 cpu_flag=""
-cpu_flag_obs=""
+cpu_flag_old=""
 
 case "$cpu_family--$model_name" in
   Alpha*EV6*)
@@ -57,7 +57,7 @@ case "$cpu_family--$model_name" in
   ;;
   *Athlon*64*)
     cpu_flag="athlon64";
-    cpu_flag_obs="athlon";
+    cpu_flag_old="athlon";
     ;;
   *Athlon*)
     cpu_flag="athlon";
@@ -98,8 +98,9 @@ case "$cc_ver--$cc_verno" in
     ;;
   *GCC*)
     # Fix for older compiler versions
-    if test -z "$cpu_flag_obs"; then
-      cpu_flag=$cpu_flag_obs;
+    if test -n "$cpu_flag_old"; then
+      cpu_flag="$cpu_flag_old"
+    fi
     check_cpu_cflags="-mcpu=$cpu_flag -march=$cpu_flag"
     ;;
   *)
-- 
cgit v1.2.1