aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2018-05-13 10:36:58 -0400
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-06-06 20:02:37 +0000
commit3e6dc8fb71cec4e8f32ff4d76c18dcbb892e7221 (patch)
tree1429c6c6a684bb6a7f45a314e5f001d4b63f1d5a
parent5af98d16b93139f11f8b42cc0c4d613548dd1d69 (diff)
downloadmeson-3e6dc8fb71cec4e8f32ff4d76c18dcbb892e7221.zip
meson-3e6dc8fb71cec4e8f32ff4d76c18dcbb892e7221.tar.gz
meson-3e6dc8fb71cec4e8f32ff4d76c18dcbb892e7221.tar.bz2
mconf: Small tweaks when printing configuration
-rw-r--r--mesonbuild/mconf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index 96784aa..abaf0af 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -120,7 +120,7 @@ class Conf:
print('Core properties:')
print(' Source dir', self.build.environment.source_dir)
print(' Build dir ', self.build.environment.build_dir)
- print('\nCore options:\n')
+ print('\nCore options:')
carr = []
for key in ['buildtype', 'warning_level', 'werror', 'strip', 'unity', 'default_library', 'install_umask']:
carr.append({'name': key,
@@ -128,6 +128,7 @@ class Conf:
'value': self.coredata.get_builtin_option(key),
'choices': coredata.get_builtin_option_choices(key)})
self.print_aligned(carr)
+ print('\nBackend options:')
if not self.coredata.backend_options:
print(' No backend options\n')
else: