From ce869f59ee153499308159fcc9e0f47019f90e3e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 4 May 2005 23:51:44 +0000 Subject: [PATCH] replace local sensitive awk uppercaser with tr Originally committed as revision 4176 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 35881e3b70..6c89cca9da 100755 --- a/configure +++ b/configure @@ -1589,8 +1589,8 @@ fi fi for codec in $CODEC_LIST ; do - echo "#define CONFIG_`echo $codec | awk '{$1=toupper($1)}1'` 1" >> $TMPH - echo "CONFIG_`echo $codec | awk '{$1=toupper($1)}1'`=yes" >> config.mak + echo "#define CONFIG_`echo $codec | tr a-z A-Z` 1" >> $TMPH + echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak done diff $TMPH config.h >/dev/null 2>&1