summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-04-03 13:10:37 +0000
committerDiego Biurrun <diego@biurrun.de>2007-04-03 13:10:37 +0000
commit1a2a5b3ecdff0472ee402e494bc8d2ee33ecbcd2 (patch)
treeabaf5199ecc1abe9582b0e96ebfa5b9011da9ffb /configure
parented252b162492ea84cd9b6660c557158914c7a228 (diff)
cosmetics: Better variable name, the ENABLE_* lists contain more than codecs.
Originally committed as revision 8607 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 12f2877d20..50c3570390 100755
--- a/configure
+++ b/configure
@@ -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