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>
This commit is contained in:
Oswald Buddenhagen 2016-07-14 18:21:25 +02:00
parent 5ad32e7f77
commit 34173e9350

View File

@ -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.")