From 8ce78b7f9e54176f05f23adccc1f73c136256301 Mon Sep 17 00:00:00 2001 From: Kate Hsuan Date: Wed, 17 Sep 2025 12:27:42 +0800 Subject: [PATCH] meson_options: replace deprecated boolean variable --- meson_options.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 19c03aa..7220d2f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,10 +1,10 @@ option('man', type : 'boolean', - value : 'true', + value : true, description : 'Build manpages') option('gtk-doc', type : 'boolean', - value : 'true', + value : true, description : 'Build developer documentation') option('introspection', type : 'feature',