aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mintro.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-11-30 16:49:18 -0800
committerDylan Baker <dylan@pnwbakers.com>2021-01-04 12:15:41 -0800
commite2ef6930ff0b88beed6aeee068b4cf37037d5d9d (patch)
tree19029df136812d0e56748e4f4b08154c17fddff1 /mesonbuild/mintro.py
parentb37f0cce2c9d94223caf5730af508c463e125457 (diff)
downloadmeson-e2ef6930ff0b88beed6aeee068b4cf37037d5d9d.zip
meson-e2ef6930ff0b88beed6aeee068b4cf37037d5d9d.tar.gz
meson-e2ef6930ff0b88beed6aeee068b4cf37037d5d9d.tar.bz2
use OptionKey for coredata.user_options
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r--mesonbuild/mintro.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py
index f6262c3..a01963c 100644
--- a/mesonbuild/mintro.py
+++ b/mesonbuild/mintro.py
@@ -272,7 +272,7 @@ def list_buildoptions(coredata: cdata.CoreData, subprojects: T.Optional[T.List[s
machine='build',
)
add_keys(dir_options, 'directory')
- add_keys(coredata.user_options, 'user')
+ add_keys({str(k): v for k, v in coredata.user_options.items()}, 'user')
add_keys(test_options, 'test')
return optlist