[MPlayer-cvslog] r23500 - trunk/configure
nicodvb
subversion at mplayerhq.hu
Thu Jun 7 22:37:25 CEST 2007
Author: nicodvb
Date: Thu Jun 7 22:37:24 2007
New Revision: 23500
Log:
in vidix check protect [A-Z] and [a-z] with single quotes as in other checks; fixes some untranslated lowercases
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Thu Jun 7 22:37:24 2007
@@ -7237,7 +7237,7 @@ if test "$_vidix" = yes ; then
test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
for driver in $_vidix_drivers ; do
- uc_driver=`echo $driver | tr [a-z] [A-Z]`
+ uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`
eval _vidix_drv_${driver}=yes
eval _def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
done
More information about the MPlayer-cvslog
mailing list