[MPlayer-cvslog] r22820 - trunk/configure

diego subversion at mplayerhq.hu
Sun Mar 25 19:38:50 CEST 2007


Author: diego
Date: Sun Mar 25 19:38:50 2007
New Revision: 22820

Modified:
   trunk/configure

Log:
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.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sun Mar 25 19:38:50 2007
@@ -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



More information about the MPlayer-cvslog mailing list