summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-08-05 10:11:59 -0400
committerAndrew Opalach <andrew@akon.city> 2025-08-05 10:11:59 -0400
commit480cfb2bd63e71ce90b5efbb81c525824db2336b (patch)
tree4bbb6cca4cfa968fdfe03e97ee143b2693c46c55
parent0470ca3416388e7e58b64f63bfe505d454f150b9 (diff)
downloadlibalabaster-480cfb2bd63e71ce90b5efbb81c525824db2336b.tar.gz
libalabaster-480cfb2bd63e71ce90b5efbb81c525824db2336b.tar.bz2
libalabaster-480cfb2bd63e71ce90b5efbb81c525824db2336b.zip
build: Fix feature=auto usage
Signed-off-by: Andrew Opalach <andrew@akon.city>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index a8b9d41..2c20b45 100644
--- a/meson.build
+++ b/meson.build
@@ -68,7 +68,7 @@ alabaster = declare_dependency(include_directories: alabaster_inc,
dependencies: alabaster_deps, sources: alabaster_src,
compile_args: alabaster_args)
-if get_option('tests').auto() and not meson.is_subproject()
+if get_option('tests').allowed() and not meson.is_subproject()
tests_src = [
'tests/main.c',
'tests/lib.c',