From f99743e69f4ddda73f68f22bad580815e82bbd7d Mon Sep 17 00:00:00 2001 From: illiliti Date: Thu, 20 Oct 2022 23:08:05 +0300 Subject: [PATCH] meson: Use proper type for bool object Fix invalid bool usage which violates official meson specification and thus breaks muon, an implementation of meson written in C. Signed-off-by: illiliti --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 9678ff4..86b66a9 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -8,7 +8,7 @@ option('documentation', description: 'Build the documentation') option('coverity', type: 'boolean', - value: 'false', + value: false, description: 'Enable coverity build fixes, see meson.build for details') option('tools-enable', type: 'boolean', -- 2.34.1