summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorunknown <stewart@mysql.com>2005-06-07 12:44:00 +1000
committerunknown <stewart@mysql.com>2005-06-07 12:44:00 +1000
commit6f1db965ad6c798ab38e7b28fcd55667659129b3 (patch)
tree88c10f4b059611576a04a71f35e82216e9c974f6 /BUILD
parente90b64cda4466566db12969a3a40f614a97cc329 (diff)
parente3dc3db659a5d8edec4d46635d069d0c1777bb8c (diff)
downloadmariadb-git-6f1db965ad6c798ab38e7b28fcd55667659129b3.tar.gz
merge
Diffstat (limited to 'BUILD')
-rwxr-xr-xBUILD/check-cpu13
1 files changed, 8 insertions, 5 deletions
diff --git a/BUILD/check-cpu b/BUILD/check-cpu
index 3ceb9c269fe..b970a4b9a5b 100755
--- a/BUILD/check-cpu
+++ b/BUILD/check-cpu
@@ -28,7 +28,7 @@ if test -r /proc/cpuinfo ; then
fi
# parse CPU flags
- for flag in `$cpuinfo | grep 'flags' | sed -e 's/^flags.*: //'`; do
+ for flag in `$cpuinfo | grep '^flags' | sed -e 's/^flags.*: //'`; do
eval cpu_flag_$flag=yes
done
else
@@ -52,7 +52,6 @@ fi
# detect CPU shortname as used by gcc options
# this list is not complete, feel free to add further entries
cpu_arg=""
-
case "$cpu_family--$model_name" in
# DEC Alpha
Alpha*EV6*)
@@ -98,9 +97,13 @@ case "$cpu_family--$model_name" in
cpu_arg="";
;;
- #
+ #
+ *ppc*)
+ cpu_arg='powerpc'
+ ;;
+
*powerpc*)
- cpu_arg=`echo $model_name | sed -e"s/ppc//g"`
+ cpu_arg='powerpc'
;;
# unknown
@@ -111,7 +114,7 @@ esac
if test -z "$cpu_arg"; then
- echo "BUILD/check-cpu: Oops, could not findout what kind of cpu this machine is using."
+ echo "BUILD/check-cpu: Oops, could not find out what kind of cpu this machine is using."
check_cpu_cflags=""
return
fi