summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2023-05-12 16:33:20 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2023-05-19 08:15:14 +0000
commit5b34bdd833704d6773d97ef4b7ca77d64ea2ccb0 (patch)
tree3f79dd61f360e8b7264f9b6ab9fbe16536f3b332 /meson_options.txt
parent310243e74e682e3cc6b3569bc2883f0021a5c135 (diff)
downloadflashrom-5b34bdd833704d6773d97ef4b7ca77d64ea2ccb0.tar.gz
flashrom-5b34bdd833704d6773d97ef4b7ca77d64ea2ccb0.tar.bz2
flashrom-5b34bdd833704d6773d97ef4b7ca77d64ea2ccb0.zip
meson_options.txt: Unquote true
Meson 1.1.0 deprecates the translation from 'true' to true and 'false' to false in the boolean typed option. Remove the quotes to keep compatible with newer meson versions. https://mesonbuild.com/Release-notes-for-1-1-0.html#coercing-values-in-the-option-function-is-deprecated Change-Id: Ib3a46112678098ff3b2e92c44cf4539089216106 Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/75149 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 91d304507..732d8d52e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -5,7 +5,7 @@ option('default_programmer_args', type : 'string', description : 'default progra
option('ich_descriptors_tool', type : 'feature', value : 'auto', description : 'Build ich_descriptors_tool')
option('bash_completion', type : 'feature', value : 'auto', description : 'Install bash completion')
option('tests', type : 'feature', value : 'auto', description : 'Build unit tests')
-option('use_internal_dmi', type : 'boolean', value : 'true')
+option('use_internal_dmi', type : 'boolean', value : true)
option('programmer', type : 'array', value : ['auto'], choices : [
'auto', 'all',
'group_internal', 'group_external',