meson: Fix typo that breaks -Dgalium-xvmc=false

_xmvc -> _xvmc. Sigh

Fixes: a6943bb4ce
       ("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>
This commit is contained in:
Dylan Baker 2018-06-22 10:08:47 -07:00
parent 94cf397092
commit ced3df5623

View 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