From dd88fb33fe3224ed8903b1dc8026991baaa4a864 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 10 Aug 2021 12:43:00 -0500 Subject: [PATCH] meson: Intel drivers don't require expat on Android Reviewed-by: Lionel Landwerlin Reviewed-by: Kristian H. Kristensen Reviewed-by: Eric Engestrom Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 96a660d849a..93646c9c31a 100644 --- a/meson.build +++ b/meson.build @@ -1487,7 +1487,7 @@ if host_machine.system() == 'darwin' dep_expat = meson.get_compiler('c').find_library('expat') elif host_machine.system() != 'windows' dep_expat = dependency('expat', fallback : ['expat', 'expat_dep'], - required: not with_platform_android or with_any_intel) + required: not with_platform_android) else dep_expat = null_dep endif