From: Eric Engestrom Date: Fri, 23 Feb 2018 17:08:45 +0000 (+0000) Subject: meson: avoid changing types for the dri3 option X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=248c593132b4465fe70545ceea1f560ca3c6d6df;p=mesa.git meson: avoid changing types for the dri3 option Signed-off-by: Eric Engestrom Reviewed-by: Dylan Baker --- diff --git a/meson.build b/meson.build index 40e9c8ff452..308f64cf811 100644 --- a/meson.build +++ b/meson.build @@ -371,11 +371,11 @@ if with_vulkan_icd_dir == '' endif with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm' -with_dri3 = get_option('dri3') -if with_dri3 == 'auto' +_dri3 = get_option('dri3') +if _dri3 == 'auto' with_dri3 = system_has_kms_drm and with_dri2 else - with_dri3 = with_dri3 == 'true' + with_dri3 = _dri3 == 'true' endif if with_any_vk and (with_platform_x11 and not with_dri3)