1
mirror of https://github.com/mpv-player/mpv synced 2024-08-08 13:25:45 +02:00

awk change suggested by frederik kuivinen

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4184 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-01-15 22:48:27 +00:00
parent 49c43f8c01
commit 19b826f732

2
configure vendored
View File

@ -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