Fall back on plain awk during the awk test. It should be safe to assume

that some sort of awk is installed on the system.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22820 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-03-25 17:38:50 +00:00
parent 551aeefee1
commit 7a370b589f
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -2509,11 +2509,11 @@ if qnx ; then
fi
# checking for a working awk, I'm using mawk first, because it's fastest - atmos
_awk=
_awk=awk
if test "$_vidix_internal" = yes ; then
_awk_verc_fail=yes
echocheck "awk"
for _awk in mawk gawk nawk awk; do
for _awk in mawk gawk nawk; do
if ( $_awk 'BEGIN{testme();}function testme(){print"";}' ) >> "$TMPLOG" 2>&1; then
_awk_verc_fail=no
break