[Ffmpeg-cvslog] r6135 - trunk/configure

diego subversion
Thu Aug 31 01:55:43 CEST 2006


Author: diego
Date: Thu Aug 31 01:55:43 2006
New Revision: 6135

Modified:
   trunk/configure

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


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Thu Aug 31 01:55:43 2006
@@ -2154,9 +2154,10 @@
 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.




More information about the ffmpeg-cvslog mailing list