summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-03-18 16:27:51 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-03-21 13:22:09 +0000
commit3d20e2e8d7bd325f17e64450b9c66c0f0a91fac6 (patch)
tree9ac7dd97f8867c4dc7d3db6a9c983c2dae8ee047 /tools
parent51e71d411156054d291d88cdd4690f48f7710d43 (diff)
fix bad initializer for -optimized-tools
Task-number: QTBUG-51967 Change-Id: I5b4a3f0ff6358149bc338c6ac2e0b57638bdff7f Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index ea30ce6b17..418426b027 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -230,7 +230,7 @@ Configure::Configure(int& argc, char** argv) : verbose(0)
dictionary[ "BUILD" ] = "debug";
dictionary[ "BUILDALL" ] = "auto"; // Means yes, but not explicitly
dictionary[ "FORCEDEBUGINFO" ] = "no";
- dictionary[ "OPTIMIZED_TOOLS" ] = "no";
+ dictionary[ "RELEASE_TOOLS" ] = "no";
dictionary[ "BUILDTYPE" ] = "none";