From da2343fb5e5fcb6a1c6bb7b3f6ae24b3ed50ca9d Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 27 Nov 2017 15:50:28 +0000 Subject: mconf: print choices of base options Signed-off-by: Eric Engestrom --- mesonbuild/mconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:') -- cgit v1.1