aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/mconf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index c7d7b3b..e4b62fd 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -110,6 +110,8 @@ class Conf:
d = o.description
v = o.value
c = o.choices
+ if isinstance(o, coredata.UserUmaskOption):
+ v = format(v, '04o')
arr.append({'name': k, 'descr': d, 'value': v, 'choices': c})
self.print_aligned(arr)