From: Dylan Baker Date: Tue, 9 Jan 2018 01:31:55 +0000 (-0800) Subject: meson: Fix typo in clover build X-Git-Tag: upstream/18.1.0~2837 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21bca27349e8e356c91cab8a20a034931002181b;p=platform%2Fupstream%2Fmesa.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 cb8ec89..1a1d3fd 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