Skip to content

Commit cc1011e

Browse files
meson.build: fix srcconf.get() from bool to int
Signed-off-by: DreamConnected <[email protected]>
1 parent 8826bb1 commit cc1011e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ srcconf.set10('IS_BIONIC', have)
273273
# Feature detection
274274
## Android Log System.
275275
if want_android_log
276-
if srcconf.get('IS_BIONIC') == true
276+
if srcconf.get('IS_BIONIC') == 1
277277
liblog = cc.find_library('log', required: true)
278278
pkgconfig_libs += liblog
279279
liblxc_dependencies += liblog

0 commit comments

Comments
 (0)