From 34173e93502c2cdf2f4e644c53af71ef6ccf03a1 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 14 Jul 2016 18:21:25 +0200 Subject: print an empty line after every report otherwise we get an unintelligible mess if multiple messages are emitted in the same category. also, there were already empty lines between categories, so it was also inconsistent. Change-Id: I5e6622bc8a5d2773bbd99124cedf4e3eb73b8a60 Reviewed-by: Lars Knoll --- mkspecs/features/qt_configure.prf | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/mkspecs/features/qt_configure.prf b/mkspecs/features/qt_configure.prf index e20b6a228a..b34f4e53ad 100644 --- a/mkspecs/features/qt_configure.prf +++ b/mkspecs/features/qt_configure.prf @@ -891,23 +891,25 @@ defineTest(qtConfPrintReport) { logn($$n) logn(" ") - !isEmpty(QT_CONFIGURE_NOTES) { - for (n, QT_CONFIGURE_NOTES): \ - logn($$n) + for (n, QT_CONFIGURE_NOTES) { + logn($$n) logn(" ") } - !isEmpty(QT_CONFIGURE_WARNINGS) { - for (w, QT_CONFIGURE_WARNINGS): \ - logn($$w) + for (w, QT_CONFIGURE_WARNINGS) { + logn($$w) logn(" ") } !isEmpty(QT_CONFIGURE_ERRORS) { - for (e, QT_CONFIGURE_ERRORS): \ + for (e, QT_CONFIGURE_ERRORS) { logn($$e) - mention_config_log:!$$QMAKE_CONFIG_VERBOSE: logn("Check config.log for details.") - logn(" ") + logn(" ") + } + mention_config_log:!$$QMAKE_CONFIG_VERBOSE { + logn("Check config.log for details.") + logn(" ") + } !equals(config.input.continue, yes): \ error("Aborting.") -- cgit v1.2.3