Commit 7d24be96 authored by michael's avatar michael

replace local sensitive awk uppercaser with tr


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4176 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b687072a
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment