diff --git a/configure b/configure index 2b3d45275d0a4a3cf3de479d2c8fc12fd4c4fcc2..6c9065f08ecdec18237510a1654fa256de72ccb7 100755 --- a/configure +++ b/configure @@ -2154,9 +2154,10 @@ else fi +# "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z" for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do - echo "#define CONFIG_`echo $codec | tr a-z A-Z` 1" >> $TMPH - echo "CONFIG_`echo $codec | tr a-z A-Z`=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 # Do not overwrite config.h if unchanged to avoid superfluous rebuilds.