From 9d39c1bf2969ded2b6c040a2594ac97eec1472cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 26 Jul 2017 14:14:44 -0400 Subject: [PATCH] meson: add empty lines before enabled/disabled status Those line are long enough to wrap around a few times, and they are much more legible with some whitespace. --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7f2d9b67a6..a429d7b112 100644 --- a/meson.build +++ b/meson.build @@ -2531,6 +2531,9 @@ foreach tuple : [ endforeach status += [ + '', 'enabled features: @0@'.format(', '.join(found)), - 'disabled features: @0@'.format(', '.join(missing))] + '', + 'disabled features: @0@'.format(', '.join(missing)), + ''] message('\n '.join(status))