From 622ab0aca5a35396b7369effc346a81fbbefd8b1 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 1 Aug 2016 13:04:12 +0200 Subject: [PATCH] use qtLog() to also print command output Change-Id: I950bc86b0b2dafcb8f2369478f391dc05280194f Reviewed-by: Lars Knoll --- mkspecs/features/configure_base.prf | 3 +-- 1 file changed, 1 insertion(+), 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)