diff options
author | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-15 22:48:27 +0000 |
---|---|---|
committer | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-15 22:48:27 +0000 |
commit | 19b826f732d115f8f7ed9056f22746878adea1a3 (patch) | |
tree | 646294d5500e6e6623c02e3de77f6021c2f0efa6 /configure | |
parent | 49c43f8c016e15e66c47c3a074639f78a02173f8 (diff) |
awk change suggested by frederik kuivinen
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4184 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1013,7 +1013,7 @@ if test "$_vidix" = yes ; then _awk_verc_fail=yes echocheck "awk" for _awk in mawk gawk nawk awk; do - if ( echo 'BEGIN{testme();}function testme(){print"";}'|$_awk -f/dev/stdin ) >> "$TMPLOG" 2>&1; then + if ( $_awk 'BEGIN{testme();}function testme(){print"";}' ) >> "$TMPLOG" 2>&1; then _awk_verc_fail=no break fi |