diff options
author | Rafael Roquetto <rafael.roquetto.qnx@kdab.com> | 2012-11-12 21:34:37 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-13 16:57:35 (GMT) |
commit | 69b918ff4ac46019215e8021e4ff7c90952ee15a (patch) | |
tree | ea651b50f121c96bafa34aaf7a5ed59e25204dfe | |
parent | 8efd01e369d9427db38d9f3c524626607f4f114b (diff) | |
download | Qt-69b918ff4ac46019215e8021e4ff7c90952ee15a.zip Qt-69b918ff4ac46019215e8021e4ff7c90952ee15a.tar.gz Qt-69b918ff4ac46019215e8021e4ff7c90952ee15a.tar.bz2 |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 9410793..4b8000d 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"; } |