changeset 23480:37ca31c6a615

in vidix check protect [A-Z] and [a-z] with single quotes as in other checks; fixes some untranslated lowercases
author nicodvb
date Thu, 07 Jun 2007 20:37:24 +0000
parents db82492b2f30
children 7fe2f7fa524f
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Thu Jun 07 20:01:05 2007 +0000
+++ b/configure	Thu Jun 07 20:37:24 2007 +0000
@@ -7237,7 +7237,7 @@
   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