From: Zbigniew Jędrzejewski-Szmek Date: Wed, 26 Jul 2017 18:14:44 +0000 (-0400) Subject: meson: add empty lines before enabled/disabled status X-Git-Tag: v235~291^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d39c1bf2969ded2b6c040a2594ac97eec1472cf;p=platform%2Fupstream%2Fsystemd.git 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. --- diff --git a/meson.build b/meson.build index 7f2d9b6..a429d7b 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))