summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-30 23:46:08 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-30 23:46:08 +0000
commit6893218fc85bd38e5035065766ba74bd81f9ab5c (patch)
tree308263d4fc11bf7235b8d26f9f81ed191d7f2231 /configure
parentcd41144843411da35466b2e2e9a4e013c00aff80 (diff)
downloadmpv-6893218fc85bd38e5035065766ba74bd81f9ab5c.tar.bz2
mpv-6893218fc85bd38e5035065766ba74bd81f9ab5c.tar.xz
The new head and tail deprecates -1 in favour of -n 1.
Patch by Luca Barbato <lu_zero@gentoo.org>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10353 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index 320a30f7b3..1081d75272 100755
--- a/configure
+++ b/configure
@@ -473,7 +473,7 @@ fi
if test "$_skip_cc_check" != yes ; then
for _cc in "$_cc" gcc-3.1 gcc3 gcc-3.0 cc ; do
echocheck "$_cc version"
- cc_name=`( $_cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1`
+ cc_name=`( $_cc -v ) 2>&1 | tail -n 1 | cut -d ' ' -f 1`
cc_version=`( $_cc -dumpversion ) 2>&1`
if test "$?" -gt 0; then
cc_version="not found"
@@ -573,15 +573,15 @@ if x86 || ppc; then
_cpuinfo="TOOLS/cpuinfo"
fi
- pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -1`
- 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`
+ pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1`
+ pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1`
+ pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1`
+ pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1`
+ pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1`
- pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -1`
+ pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -n 1`
if test -z "$pparam" ; then
- pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -1`
+ pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -n 1`
fi
_mmx=no