From f92968a8d253cb6581ba80d67fc863f1aa85eef7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 5 Dec 2024 11:35:45 +0000 Subject: [PATCH] build: Use a boolean default for a boolean option, rather than a string Meson 1.1.0 officially deprecates string defaults for boolean options, but boolean defaults worked in many older Meson versions, going back to at least 0.49.x. Signed-off-by: Simon McVittie --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 1028017f..e9001114 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -5,5 +5,5 @@ option( 'tests', type : 'boolean', description : 'build and run unit tests', - value : 'true', + value : true, )