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 <illiliti@protonmail.com>
This commit is contained in:
illiliti 2022-10-20 23:08:05 +03:00
parent df826a3c54
commit 7820dc8b08

View file

@ -8,5 +8,5 @@ option('documentation',
description: 'Build the documentation')
option('coverity',
type: 'boolean',
value: 'false',
value: false,
description: 'Enable coverity build fixes, see meson.build for details')