in vidix check protect [A-Z] and [a-z] with single quotes as in other checks; fixes some untranslated lowercases

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23500 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2007-06-07 20:37:24 +00:00
parent 6b7e82c9eb
commit dd49445c91
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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