summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Roquetto <rafael.roquetto.qnx@kdab.com>2012-11-12 19:34:37 -0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-13 17:57:35 +0100
commit69b918ff4ac46019215e8021e4ff7c90952ee15a (patch)
treeea651b50f121c96bafa34aaf7a5ed59e25204dfe
parent8efd01e369d9427db38d9f3c524626607f4f114b (diff)
Fix syntax error on configure.exe source code.
Change-Id: I4859e5f02d84791f59652298f62abe8d2984af06 Reviewed-by: Fabian Bumberger <fbumberger@rim.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-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 94107938e0..4b8000d8e7 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -2547,7 +2547,7 @@ void Configure::autoDetection()
if (dictionary["STACK_PROTECTOR_STRONG"] == "auto")
dictionary["STACK_PROTECTOR_STRONG"] = checkAvailability("STACK_PROTECTOR_STRONG") ? "yes" : "no";
- if ((platform() == QNX || platform == BLACKBERRY) && dictionary["SLOG2"] == "auto") {
+ if ((platform() == QNX || platform() == BLACKBERRY) && dictionary["SLOG2"] == "auto") {
dictionary[ "SLOG2" ] = checkAvailability("SLOG2") ? "yes" : "no";
}