meson: Use proper type for bool object
authorilliliti <illiliti@protonmail.com>
Thu, 20 Oct 2022 20:08:05 +0000 (23:08 +0300)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 17 Nov 2023 10:55:47 +0000 (19:55 +0900)
Fix invalid bool usage which violates official meson specification and thus
breaks muon, an implementation of meson written in C.

Signed-off-by: illiliti <illiliti@protonmail.com>
meson_options.txt

index 9678ff483e69ba252602d1417e0cdb8fcfbfc9c2..86b66a92b9d724b4906bf27f983018925ed40178 100644 (file)
@@ -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',