summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-15 22:48:27 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-15 22:48:27 +0000
commit19b826f732d115f8f7ed9056f22746878adea1a3 (patch)
tree646294d5500e6e6623c02e3de77f6021c2f0efa6 /configure
parent49c43f8c016e15e66c47c3a074639f78a02173f8 (diff)
downloadmpv-19b826f732d115f8f7ed9056f22746878adea1a3.tar.bz2
mpv-19b826f732d115f8f7ed9056f22746878adea1a3.tar.xz
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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 583d0f86fc..a9737ad6a8 100755
--- a/configure
+++ b/configure
@@ -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