diff options
-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:') |