summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-05-21 14:27:24 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-22 21:17:56 +0200
commit836260974fb65bf3826d41bd6ffe6af1102de608 (patch)
tree81f16e1cfb76d97229f366cb1a383545a330fa5f /tools
parentc21a1621cee0f3d16404e250d57bcec2704e2390 (diff)
purge dead output-related code
QTBUILDINSTRUCTION is not evaluated anywhere anymore. Change-Id: Ie23f61f5a25594591efdafdc49e279f13623b049 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 4f973a4398..bbc27e36d8 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1333,18 +1333,6 @@ void Configure::parseCmdLine()
}
}
- // Tell the user how to proceed building Qt after configure finished its job
- dictionary["QTBUILDINSTRUCTION"] = dictionary["MAKE"];
- if (dictionary.contains("XQMAKESPEC")) {
- if (dictionary["XQMAKESPEC"].startsWith("wince")) {
- dictionary["QTBUILDINSTRUCTION"] =
- QString("setcepaths.bat ") + dictionary["XQMAKESPEC"] + QString(" && ") + dictionary["MAKE"];
- }
- }
-
- // Tell the user how to confclean before the next configure
- dictionary["CONFCLEANINSTRUCTION"] = dictionary["MAKE"] + QString(" confclean");
-
if (isDeviceMkspec) {
const QStringList devices = mkspecs.filter("devices/", Qt::CaseInsensitive);
const QStringList family = devices.filter(dictionary["XQMAKESPEC"], Qt::CaseInsensitive);