From: Dylan Baker Date: Tue, 9 Jan 2018 01:31:55 +0000 (-0800) Subject: meson: Fix typo in clover build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21bca27349e8e356c91cab8a20a034931002181b;p=mesa.git meson: Fix typo in clover build The leading space breaks things. fixes: 42ea0631f108d ("meson: build clover") Signed-off-by: Dylan Baker --- diff --git a/meson.build b/meson.build index cb8ec89e2b4..1a1d3fd69b9 100644 --- a/meson.build +++ b/meson.build @@ -584,7 +584,7 @@ if with_gallium_st_nine endif _opencl = get_option('gallium-opencl') -if _opencl !=' disabled' +if _opencl != 'disabled' if not with_gallium error('OpenCL Clover implementation requires at least one gallium driver.') endif