From: Pierre Moreau Date: Wed, 9 Jan 2019 22:03:45 +0000 (+0100) Subject: meson: Fix with_gallium_icd to with_opencl_icd X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b736f7fd4852bdea2ac6be9a018a41065252233;p=mesa.git meson: Fix with_gallium_icd to with_opencl_icd `with_gallium_icd` is never used throughout the different Meson build files, whereas `with_opencl_icd` tracks whether or not `gallium-opencl` was set to "icd". Fixes: 42ea0631f108d82554339530d6c88aa1b448af1e ("meson: build clover") Signed-off-by: Pierre Moreau Reviewed-by: Dylan Baker --- diff --git a/meson.build b/meson.build index 601085e0552..e759bbf96a5 100644 --- a/meson.build +++ b/meson.build @@ -668,7 +668,7 @@ if _opencl != 'disabled' else dep_clc = null_dep with_gallium_opencl = false - with_gallium_icd = false + with_opencl_icd = false endif gl_pkgconfig_c_flags = []