From: illiliti Date: Thu, 20 Oct 2022 20:08:05 +0000 (+0300) Subject: meson: Use proper type for bool object X-Git-Tag: accepted/tizen/unified/20231121.102917~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f99743e69f4ddda73f68f22bad580815e82bbd7d;p=platform%2Fupstream%2Flibevdev.git 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 --- 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',