diff options
author | Eric Engestrom <eric.engestrom@imgtec.com> | 2017-11-27 15:50:28 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-27 20:54:03 +0200 |
commit | da2343fb5e5fcb6a1c6bb7b3f6ae24b3ed50ca9d (patch) | |
tree | 345d901e950c2ef404394e8bad12619293049cd3 | |
parent | 91d8784a046e8dcb11e3a58e228dfd30687f85e3 (diff) | |
download | meson-da2343fb5e5fcb6a1c6bb7b3f6ae24b3ed50ca9d.zip meson-da2343fb5e5fcb6a1c6bb7b3f6ae24b3ed50ca9d.tar.gz meson-da2343fb5e5fcb6a1c6bb7b3f6ae24b3ed50ca9d.tar.bz2 |
mconf: print choices of base options
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
-rw-r--r-- | mesonbuild/mconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 747b9d1..771e9ee 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -184,7 +184,7 @@ class Conf: coarr = [] for k in okeys: o = self.coredata.base_options[k] - coarr.append({'name': k, 'descr': o.description, 'value': o.value, 'choices': ''}) + coarr.append({'name': k, 'descr': o.description, 'value': o.value, 'choices': o.choices}) self.print_aligned(coarr) print('') print('Compiler arguments:') |