summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-01-31 11:25:20 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-01 10:23:26 +0100
commit0debd5dd487e979ff80dac5cd762d457eee5caf4 (patch)
treec4c7e731c34481b7d4c16d1e1f676a03666676cd /tools
parentfeb33916fd2f2717a9c368bd0371b95fc83a79af (diff)
remove somewhat pointless conditional
if the user just set an empty spec, everything will go wrong anyway. Change-Id: I5ddaa2f0be1be96132260af8c869ba38e02eb3d8 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index ed491a58c8..2a9c1ecb71 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -442,8 +442,7 @@ void Configure::parseCmdLine()
if (j == argCount)
break;
dictionary["XQMAKESPEC"] = configCmdLine.at(j);
- if (!dictionary[ "XQMAKESPEC" ].isEmpty())
- applySpecSpecifics();
+ applySpecSpecifics();
break;
}
}