Skip to content
Snippets Groups Projects
Commit f92968a8 authored by Simon McVittie's avatar Simon McVittie
Browse files

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: default avatarSimon McVittie <smcv@collabora.com>
parent 87f2768f
No related branches found
No related tags found
1 merge request!777Update libglnx to 2025-01-06
...@@ -5,5 +5,5 @@ option( ...@@ -5,5 +5,5 @@ option(
'tests', 'tests',
type : 'boolean', type : 'boolean',
description : 'build and run unit tests', description : 'build and run unit tests',
value : 'true', value : true,
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment