summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-06-17 11:00:19 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-17 15:43:16 +0200
commit65b749f5ea056261a8c29866cee38b17a52a8556 (patch)
tree285f9f5a2c1b32a016df9b0c50e6a9067256c2f0 /tools
parent7f709861ec8350487d9cd46f9dacc1c7a86b7444 (diff)
don't try to not build non-existing parts
Change-Id: I20896f15f7ab91aac8a9b6977fd3a253bc0e187d Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index f92fad1d69..50e491f20c 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1570,8 +1570,8 @@ void Configure::desc(const char *mark_option, const char *mark, const char *opti
void Configure::applySpecSpecifics()
{
if (dictionary.contains("XQMAKESPEC")) {
- //Disable building tools, docs and translations when cross compiling.
- nobuildParts << "docs" << "translations" << "tools";
+ //Disable building tools when cross compiling.
+ nobuildParts << "tools";
}
if (dictionary.value("XQMAKESPEC").startsWith("wince")) {