1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

replace local sensitive awk uppercaser with tr

Originally committed as revision 4176 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2005-05-04 23:51:44 +00:00
parent a55f20bd9a
commit ce869f59ee

4
configure vendored
View File

@ -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