Commit 953d03dd authored by diego's avatar diego

Work around Solaris tr not understanding "tr a-z A-Z" as it should.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6135 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b2acf90e
......@@ -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.
......
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