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 authored and ppisar committed Jan 15, 2025
1 parent 77ca25f commit e60ecf3
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 e60ecf3

Please sign in to comment.