Commit 3af5b8e5 authored by stewart@mysql.com's avatar stewart@mysql.com

Fix BUILD/check-cpu for powerpc

parent 5ec15497
...@@ -28,7 +28,7 @@ if test -r /proc/cpuinfo ; then ...@@ -28,7 +28,7 @@ if test -r /proc/cpuinfo ; then
fi fi
# parse CPU flags # 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 eval cpu_flag_$flag=yes
done done
else else
...@@ -52,7 +52,6 @@ fi ...@@ -52,7 +52,6 @@ fi
# detect CPU shortname as used by gcc options # detect CPU shortname as used by gcc options
# this list is not complete, feel free to add further entries # this list is not complete, feel free to add further entries
cpu_arg="" cpu_arg=""
case "$cpu_family--$model_name" in case "$cpu_family--$model_name" in
# DEC Alpha # DEC Alpha
Alpha*EV6*) Alpha*EV6*)
...@@ -99,8 +98,12 @@ case "$cpu_family--$model_name" in ...@@ -99,8 +98,12 @@ case "$cpu_family--$model_name" in
;; ;;
# #
*ppc*)
cpu_arg='powerpc'
;;
*powerpc*) *powerpc*)
cpu_arg=`echo $model_name | sed -e"s/ppc//g"` cpu_arg='powerpc'
;; ;;
# unknown # unknown
...@@ -111,7 +114,7 @@ esac ...@@ -111,7 +114,7 @@ esac
if test -z "$cpu_arg"; then 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="" check_cpu_cflags=""
return return
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment