From de57106c94c31bd3e77a53c92af4654358c2bd19 Mon Sep 17 00:00:00 2001 From: illiliti Date: Sat, 2 Apr 2022 16:32:46 +0300 Subject: [PATCH] meson: Use proper type for bools Fix invalid usage of bools which violates official meson specification and thus breaks muon, an implementation of meson written in C. Signed-off-by: illiliti --- meson_options.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 4433fa0..b8e2ec6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,23 +1,23 @@ option('libraries', description: 'Compile Wayland libraries', type: 'boolean', - value: 'true') + value: true) option('scanner', description: 'Compile wayland-scanner binary', type: 'boolean', - value: 'true') + value: true) option('tests', description: 'Compile Wayland tests', type: 'boolean', - value: 'true') + value: true) option('documentation', description: 'Build the documentation (requires Doxygen, dot, xmlto, xsltproc)', type: 'boolean', - value: 'true') + value: true) option('dtd_validation', description: 'Validate the protocol DTD (requires libxml2)', type: 'boolean', - value: 'true') + value: true) option('icon_directory', description: 'Location used to look for cursors (defaults to ${datadir}/icons if unset)', type: 'string',