From: Jordan Justen Date: Wed, 25 Apr 2018 01:12:51 +0000 (-0700) Subject: meson: Fix with_intel_vk and with_amd_vk variables X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b0c57740278f6c05b9b514e0011bb3646acd97ef;p=mesa.git meson: Fix with_intel_vk and with_amd_vk variables Fixes: 5608d0a2cee "meson: use array type options" Cc: Dylan Baker Signed-off-by: Jordan Justen Reviewed-by: Tapani Pälli --- diff --git a/meson.build b/meson.build index 52a1075823f..c0e5c94d794 100644 --- a/meson.build +++ b/meson.build @@ -213,8 +213,8 @@ if _vulkan_drivers.contains('auto') endif endif if _vulkan_drivers != [''] - with_intel_vk = _drivers.contains('intel') - with_amd_vk = _drivers.contains('amd') + with_intel_vk = _vulkan_drivers.contains('intel') + with_amd_vk = _vulkan_drivers.contains('amd') with_any_vk = true endif