summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius.storm-olsen@nokia.com>2010-03-11 07:59:07 (GMT)
committerMarius Storm-Olsen <marius.storm-olsen@nokia.com>2010-03-11 08:00:46 (GMT)
commitc75bd51df44359c386149c6962532344123b07d5 (patch)
treea3bfef630d987b10a522f685ccb86cd3faf6b41e /tools
parent7a55a3efeec6d6820556662d715b01fdf32693e2 (diff)
downloadQt-c75bd51df44359c386149c6962532344123b07d5.zip
Qt-c75bd51df44359c386149c6962532344123b07d5.tar.gz
Qt-c75bd51df44359c386149c6962532344123b07d5.tar.bz2
configure.exe: Fix inverted logic
Reviewed-by: Rohan McGovern
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 44d5f58..421dfb3 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -2276,7 +2276,7 @@ bool Configure::verifyConfiguration()
if (!(l.contains(dictionary["ARM_FPU_TYPE"])))
cout << QString("WARNING: Using unsupported fpu flag: %1").arg(dictionary["ARM_FPU_TYPE"]) << endl;
}
- if (dictionary["DECLARATIVE"] == "yes" && dictionary["SCRIPT"] != "no") {
+ if (dictionary["DECLARATIVE"] == "yes" && dictionary["SCRIPT"] == "no") {
cout << "WARNING: To be able to compile QtDeclarative we need to also compile the" << endl
<< "QtScript module. If you continue, we will turn on the QtScript module." << endl
<< "(Press any key to continue..)";