From cd3d65155b58e862656fbdec558dea077ff27353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Wed, 8 Jun 2022 01:00:51 -0400 Subject: [PATCH] meson: Always defined IS_BIONIC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meson.build b/meson.build index ddb14f683..7027b41b0 100644 --- a/meson.build +++ b/meson.build @@ -128,9 +128,7 @@ else endif # Cross-compile on Android. -if host_machine.system() == 'android' - srcconf.set10('IS_BIONIC', true) -endif +srcconf.set10('IS_BIONIC', host_machine.system() == 'android') # Custom configuration. cgrouppattern = get_option('cgroup-pattern')