# HG changeset patch # User jkeil # Date 995016013 0 # Node ID cbbc5bc64c461cbc6eaace6df148772c6bef1a98 # Parent d797ecb9778ffad964e3cbb965b572410802cc78 Handle linux SMP machines (suggested by Martin Aumueller) diff -r d797ecb9778f -r cbbc5bc64c46 configure --- a/configure Fri Jul 13 08:54:24 2001 +0000 +++ b/configure Fri Jul 13 09:20:13 2001 +0000 @@ -362,15 +362,15 @@ _cpuinfo="TOOLS/cpuinfo" fi - pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2` - pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2` + pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -1` + pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -1` if [ -z "$pparam" ]; then - pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2` + pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -1` fi - pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2` - pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2` - pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2` - pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2` + pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` + pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` + pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` + pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` else # not an x86 host, cpuinfo stuff is not relevant pname= pparam= pvendor= pfamily= pmodel= pstepping=