meson: Fix typo that breaks -Dgalium-xvmc=false
authorDylan Baker <dylan@pnwbakers.com>
Fri, 22 Jun 2018 17:08:47 +0000 (10:08 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 22 Jun 2018 17:16:27 +0000 (10:16 -0700)
_xmvc -> _xvmc. Sigh

Fixes: a6943bb4ce99ea7af7222552f1326fb80823d0b2
       ("meson: Fix auto option for xvmc")
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Tested-by: Clayton Craft <clayton.a.craft@intel.com>
meson.build

index e88616c9e82a9f45245c410e14d66e5e0cc27f53..b2722c71e5bd1d1fb02763249a87d20e07c6e895 100644 (file)
@@ -441,7 +441,7 @@ elif not (with_gallium_r600 or with_gallium_nouveau)
 endif
 dep_xvmc = null_dep
 with_gallium_xvmc = false
-if _xmvc != 'false'
+if _xvmc != 'false'
   dep_xvmc = dependency('xvmc', version : '>= 1.0.6', required : _xvmc == 'true')
   with_gallium_xvmc = dep_xvmc.found()
 endif