summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-08-01 13:04:12 +0200
committerLars Knoll <lars.knoll@qt.io>2016-08-11 08:04:59 +0000
commit622ab0aca5a35396b7369effc346a81fbbefd8b1 (patch)
tree03ece08e2e07f2c356a7cfa6def9f3b7179951b4 /mkspecs
parentf18cc7e3cc21c6a318f28077294400d5b7fe90cf (diff)
use qtLog() to also print command output
Change-Id: I950bc86b0b2dafcb8f2369478f391dc05280194f Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/configure_base.prf3
1 files changed, 1 insertions, 2 deletions
diff --git a/mkspecs/features/configure_base.prf b/mkspecs/features/configure_base.prf
index b19bbae51d..f62142f84d 100644
--- a/mkspecs/features/configure_base.prf
+++ b/mkspecs/features/configure_base.prf
@@ -33,8 +33,7 @@ defineTest(qtRunLoggedCommand) {
qtLog("+ $$1")
output = $$system("( $$1 ) 2>&1", blob, result)
- write_file($${QMAKE_CONFIG_LOG}, output, append)
- $$QMAKE_CONFIG_VERBOSE: log($$output)
+ qtLog($$output)
!equals(result, 0): return(false)
return(true)