summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-07-21 17:19:21 +0200
committerLars Knoll <lars.knoll@qt.io>2016-08-10 15:42:12 +0000
commit865d80fdb536af7eb17094787444f010313594b5 (patch)
tree2273ea9d7d4810697ee1c201b45e712027f74cd0 /mkspecs
parentc1ad0c2ebf219397a677e5fb28ca169bf90e083a (diff)
remove workarounds for spurious function argument inheritance
the qmake bug has been fixed recently. Change-Id: I4a4226b3cd77d449980f73e41cd256ed43940a09 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_configure.prf16
1 files changed, 8 insertions, 8 deletions
diff --git a/mkspecs/features/qt_configure.prf b/mkspecs/features/qt_configure.prf
index dc1c1ef524..c4dda1b568 100644
--- a/mkspecs/features/qt_configure.prf
+++ b/mkspecs/features/qt_configure.prf
@@ -889,26 +889,26 @@ defineTest(qtConfCreateSummary) {
defineTest(qtConfPrintReport) {
for (n, QT_CONFIGURE_REPORT): \
logn($$n)
- logn(" ")
+ logn()
for (n, QT_CONFIGURE_NOTES) {
logn($$n)
- logn(" ")
+ logn()
}
for (w, QT_CONFIGURE_WARNINGS) {
logn($$w)
- logn(" ")
+ logn()
}
!isEmpty(QT_CONFIGURE_ERRORS) {
for (e, QT_CONFIGURE_ERRORS) {
logn($$e)
- logn(" ")
+ logn()
}
mention_config_log:!$$QMAKE_CONFIG_VERBOSE {
logn("Check config.log for details.")
- logn(" ")
+ logn()
}
!equals(config.input.continue, yes): \
@@ -1176,7 +1176,7 @@ defineTest(qtConfigure) {
qtConfProcessEarlyChecks()
CONFIG += qt_conf_tests_allowed
- logn(" ")
+ logn()
logn("Running configuration tests...")
# process all features
@@ -1188,12 +1188,12 @@ defineTest(qtConfigure) {
qtConfCreateSummary()
logn("Done running configuration tests.")
- logn(" ")
+ logn()
}
qtConfigure($$_PRO_FILE_PWD_/configure.json)
logn("Configure summary:")
-logn(" ")
+logn()
qtConfPrintReport()