Skip to content

Commit

Permalink
meson: make boolean options boolean
Browse files Browse the repository at this point in the history
Later versions of meson deprecate this "feature", and every
other boolean value in meson.options is actually a bool.

Signed-off-by: Matt Jolly <kangie@gentoo.org>
  • Loading branch information
Kangie committed Dec 12, 2024
1 parent b86ad1d commit d644787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# REMEMBER TO UPDATE THE SUMMARY() IN meson.build when adding options here

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

option('verbose_tests', type : 'boolean', value : true,
Expand Down

0 comments on commit d644787

Please sign in to comment.