diff options
author | Pierre Moreau <pierre.morrow@free.fr> | 2019-01-09 23:03:45 +0100 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-01-15 13:06:50 -0800 |
commit | 0b736f7fd4852bdea2ac6be9a018a41065252233 (patch) | |
tree | 28d3ee3dd868519c0210a04dfa475c7462154d92 /meson.build | |
parent | d644698b443b395dc878efdaf4201647b0ce69d6 (diff) |
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 <pierre.morrow@free.fr>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 601085e05527..e759bbf96a57 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 = [] |