summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-07 20:37:24 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-07 20:37:24 +0000
commitdd49445c91b300045cd37eac0dadf5538f3142e9 (patch)
treee29d4df1ea0572b09b005d4e80eb52ca6542c4d1 /configure
parent6b7e82c9eba3ca24606a924b2f86b61fc5a92b07 (diff)
downloadmpv-dd49445c91b300045cd37eac0dadf5538f3142e9.tar.bz2
mpv-dd49445c91b300045cd37eac0dadf5538f3142e9.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e53a4d7a57..deb788addf 100755
--- a/configure
+++ b/configure
@@ -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