diff options
author | Marius Storm-Olsen <marius.storm-olsen@nokia.com> | 2010-03-11 08:59:07 +0100 |
---|---|---|
committer | Marius Storm-Olsen <marius.storm-olsen@nokia.com> | 2010-03-11 09:00:46 +0100 |
commit | c75bd51df44359c386149c6962532344123b07d5 (patch) | |
tree | a3bfef630d987b10a522f685ccb86cd3faf6b41e /tools/configure/configureapp.cpp | |
parent | 7a55a3efeec6d6820556662d715b01fdf32693e2 (diff) | |
download | qt4-tools-c75bd51df44359c386149c6962532344123b07d5.tar.gz |
configure.exe: Fix inverted logic
Reviewed-by: Rohan McGovern
Diffstat (limited to 'tools/configure/configureapp.cpp')
-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 44d5f58b7a..421dfb36e8 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..)"; |