From c75bd51df44359c386149c6962532344123b07d5 Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Thu, 11 Mar 2010 08:59:07 +0100 Subject: configure.exe: Fix inverted logic Reviewed-by: Rohan McGovern --- configure.exe | Bin 1225728 -> 1225728 bytes tools/configure/configureapp.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.exe b/configure.exe index 573ff4c..bc1ee20 100755 Binary files a/configure.exe and b/configure.exe differ 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..)"; -- cgit v0.12