[MPlayer-dev-eng] [PATCH] configure fix to allow expand commands
eviv bulgroz
ebulgroz at yahoo.com
Thu Jul 29 15:53:26 CEST 2004
On my system with -x expand command set, I get the following:
$ set -x; ver=`(gcc -dumpversion ) 2>&1`; set +x
...
$ echo $ver
++ gcc -dumpversion 3.4.1
!!!
To get a proper $ver value you have to do instead:
$ set -x; ver=`(gcc -dumpversion) 2>/dev/null`; set +x
...
$ echo $ver
3.4.1
Here is a minimal fix to allow expand command in configure
Please apply, thanks,
Eviv
-------------- next part --------------
A non-text attachment was scrubbed...
Name: expand.diff
Type: text/x-patch
Size: 1772 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/attachments/20040729/e051ef87/attachment.bin>
More information about the MPlayer-dev-eng
mailing list