summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-05-04 23:51:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-05-04 23:51:44 +0000
commitce869f59ee153499308159fcc9e0f47019f90e3e (patch)
treee4dc5ac7d9ed154063996def917813ec9e88871e /configure
parenta55f20bd9a659416efa0cc53af04911b199be747 (diff)
replace local sensitive awk uppercaser with tr
Originally committed as revision 4176 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files 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