Mercurial > mplayer.hg
changeset 10352:536f3ea8d19d
The new head and tail deprecates -1 in favour of -n 1.
Patch by Luca Barbato <lu_zero@gentoo.org>.
author | diego |
---|---|
date | Mon, 30 Jun 2003 23:46:08 +0000 |
parents | 373dc373ac4a |
children | ee46cdf03028 |
files | configure |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Mon Jun 30 19:30:36 2003 +0000 +++ b/configure Mon Jun 30 23:46:08 2003 +0000 @@ -473,7 +473,7 @@ 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 @@ _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` - - pparam=`$_cpuinfo | grep 'features' | 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 -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