From a571e24bbf9cace174b179eaff1f548a753b6ca2 Mon Sep 17 00:00:00 2001 From: eyck Date: Thu, 17 May 2001 09:36:36 +0000 Subject: Fixed cpu model detection with non-bash bourne shell git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@820 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index ddb12f3729..e7bdfbd5c2 100755 --- a/configure +++ b/configure @@ -183,7 +183,6 @@ done # --- -TAB=`echo -n -e "\t"` pname=`cat /proc/cpuinfo | grep 'model name' | cut -d ':' -f 2` pparam=`cat /proc/cpuinfo | grep 'features' | cut -d ':' -f 2` if [ -z "$pparam" ]; then @@ -191,7 +190,7 @@ if [ -z "$pparam" ]; then fi pvendor=`cat /proc/cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2` pfamily=`cat /proc/cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2` -pmodel=`cat /proc/cpuinfo | grep "model$TAB" | cut -d ':' -f 2 | cut -d ' ' -f 2` +pmodel=`cat /proc/cpuinfo |grep -v 'model name'| grep "model" | cut -d ':' -f 2 | cut -d ' ' -f 2` pstepping=`cat /proc/cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2` _mmx=no -- cgit v1.2.3