meson: add empty lines before enabled/disabled status
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 26 Jul 2017 18:14:44 +0000 (14:14 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 26 Jul 2017 18:17:50 +0000 (14:17 -0400)
Those line are long enough to wrap around a few times, and they are
much more legible with some whitespace.

meson.build

index 7f2d9b6..a429d7b 100644 (file)
@@ -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))