replace local sensitive awk uppercaser with tr

Originally committed as revision 4176 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 20 years ago
parent a55f20bd9a
commit ce869f59ee
  1. 4
      configure

4
configure vendored

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

Loading…
Cancel
Save