summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-07-26 14:14:44 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-07-26 14:17:50 -0400
commit9d39c1bf2969ded2b6c040a2594ac97eec1472cf (patch)
treece9613263851048eb241332fd0d483e2534311c9
parentb1519d656691e725a8b8950fc0e6cc8d25b1016a (diff)
downloadsystemd-9d39c1bf2969ded2b6c040a2594ac97eec1472cf.tar.gz
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.
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
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))