Commit d8d0911b authored by diego's avatar diego

cosmetics: Better variable name, the ENABLE_* lists contain more than codecs.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8607 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 58e00ca0
......@@ -2017,11 +2017,11 @@ else
fi
for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
ucname="`toupper $codec`"
for part in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
ucname="`toupper $part`"
config_name="CONFIG_$ucname"
enabled_name="ENABLE_$ucname"
if enabled $codec; then
if enabled $part; then
echo "#define $config_name 1" >> $TMPH
echo "#define $enabled_name 1" >> $TMPH
echo "$config_name=yes" >> config.mak
......
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