diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-03 13:10:37 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-03 13:10:37 +0000 |
commit | 1a2a5b3ecdff0472ee402e494bc8d2ee33ecbcd2 (patch) | |
tree | abaf5199ecc1abe9582b0e96ebfa5b9011da9ffb | |
parent | ed252b162492ea84cd9b6660c557158914c7a228 (diff) | |
download | ffmpeg-1a2a5b3ecdff0472ee402e494bc8d2ee33ecbcd2.tar.gz |
cosmetics: Better variable name, the ENABLE_* lists contain more than codecs.
Originally committed as revision 8607 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |