summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-07-06 16:08:13 +0200
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-07-22 10:27:35 +0000
commit62b0113c7be0ee88917bc515860d959120508dab (patch)
tree3a8aa481a4705427bc56849805a363dc740cf9e2 /mkspecs
parent70970ad9814ca2c20b008f40fd70067bc2ce749f (diff)
fix recognition of -no-verbose
while probably not too useful, the old configure does allow explicitly disabling verbose mode. Change-Id: If0585443c649a67f616b3668cc90b18fecde11ba Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_configure.prf5
1 files changed, 5 insertions, 0 deletions
diff --git a/mkspecs/features/qt_configure.prf b/mkspecs/features/qt_configure.prf
index aea93f8d08..154efc13d9 100644
--- a/mkspecs/features/qt_configure.prf
+++ b/mkspecs/features/qt_configure.prf
@@ -183,6 +183,11 @@ defineTest(qtConfParseCommandLine) {
export(QMAKE_CONFIG_VERBOSE)
next()
}
+ contains(c, "^-no-v")|contains(c, "^--?no-verbose") {
+ QMAKE_CONFIG_VERBOSE = false
+ export(QMAKE_CONFIG_VERBOSE)
+ next()
+ }
# parse out opt and val
contains(c, "^--?enable-(.*)") {