summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-07-14 18:21:25 +0200
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-07-22 10:28:14 +0000
commit34173e93502c2cdf2f4e644c53af71ef6ccf03a1 (patch)
treee88c42e817e63b65a3cef3edc22fdb8a8c1836a7 /mkspecs
parent5ad32e7f77154d96a11563ae92518e7f9511014b (diff)
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 <lars.knoll@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_configure.prf20
1 files 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.")