diff options
author | althekiller <althekiller@svn> | 2010-05-07 19:53:44 +0000 |
---|---|---|
committer | althekiller <althekiller@svn> | 2010-05-07 19:53:44 +0000 |
commit | 71428a61e7d8a807f3a5190353586a54da48f6e8 (patch) | |
tree | 2ea688d5c1ad24480e043e43f284129bb9657f80 /configure.in | |
parent | b602f37a7ba1d98b19a1ee2af283db30f0e5c057 (diff) |
fixed: VDA config flags was always set. (whitespace matters)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29901 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f244cd34d6..a2a420c1ca 100644 --- a/configure.in +++ b/configure.in @@ -745,11 +745,11 @@ if test "$host_vendor" = "apple" ; then AC_DEFINE([HAVE_LIBVDADECODER], [1], [Define to 1 if you have the 'VDADecoder' library.]) AC_MSG_NOTICE($vdadecoder_enabled) else - use_vdadecoder ="no" + use_vdadecoder="no" AC_MSG_NOTICE($vdadecoder_disabled) fi else - use_vdadecoder ="no" + use_vdadecoder="no" AC_MSG_NOTICE($vdadecoder_disabled) fi |