Skip to content

Commit e60ecf3

Browse files
Kangieppisar
authored andcommitted
meson: make boolean options boolean
Later versions of meson deprecate this "feature", and every other boolean value in meson.options is actually a bool. Signed-off-by: Matt Jolly <[email protected]>
1 parent 77ca25f commit e60ecf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson_options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# REMEMBER TO UPDATE THE SUMMARY() IN meson.build when adding options here
1313

14-
option('accept_overflowed_buildorder', type : 'boolean', value: 'false',
14+
option('accept_overflowed_buildorder', type : 'boolean', value: false,
1515
description : 'Accept overflowed 18446744073709551615 buildorder as -1. This breaks a specification, but some RHEL 8 module builds look like that.')
1616

1717
option('verbose_tests', type : 'boolean', value : true,

0 commit comments

Comments
 (0)