meson: Intel drivers don't require expat on Android

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12308>
This commit is contained in:
Jason Ekstrand 2021-08-10 12:43:00 -05:00 committed by Marge Bot
parent ce1a66fe3e
commit dd88fb33fe
1 changed files with 1 additions and 1 deletions

View File

@ -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