summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.pri2
-rw-r--r--mkspecs/features/configure_base.prf4
2 files changed, 4 insertions, 2 deletions
diff --git a/configure.pri b/configure.pri
index 115277e057..45692d6b5c 100644
--- a/configure.pri
+++ b/configure.pri
@@ -153,7 +153,7 @@ defineReplace(qtConfFunc_licenseCheck) {
$$system_quote($$eval(config.input.confirm-license)) \
$$system_quote($$QT_SOURCE_TREE) $$system_quote($$QT_BUILD_TREE) \
$$[QMAKE_SPEC] $$[QMAKE_XSPEC]", \
- LicheckOutput): \
+ LicheckOutput, false): \
return(false)
logn()
for (o, LicheckOutput) {
diff --git a/mkspecs/features/configure_base.prf b/mkspecs/features/configure_base.prf
index a4464528b4..e870e2ee10 100644
--- a/mkspecs/features/configure_base.prf
+++ b/mkspecs/features/configure_base.prf
@@ -31,7 +31,9 @@ defineTest(qtLog) {
defineTest(qtRunLoggedCommand) {
qtLog("+ $$1")
- output = $$system("( $$1 ) 2>&1", lines, result)
+ !equals(3, false): \
+ 1 = "( $$1 ) 2>&1"
+ output = $$system("$$1", lines, result)
lg =
for (l, output): \
lg += "> $$l"