From: Stéphane Graber Date: Wed, 8 Jun 2022 05:00:51 +0000 (-0400) Subject: meson: Always defined IS_BIONIC X-Git-Tag: lxc-5.0.0~7^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd3d65155b58e862656fbdec558dea077ff27353;p=thirdparty%2Flxc.git meson: Always defined IS_BIONIC Signed-off-by: Stéphane Graber --- 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')