summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-02-26 18:46:55 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-02-26 18:46:55 (GMT)
commitf02e04675d8c552a50c1f28b45665f1605b372f3 (patch)
tree8267b3d10bd59ca3ecad06f505d0a703df5d95f9 /tools
parent5d1d426afe07458a91b4908881554653285ed04c (diff)
parent8733baf8b770a5fca12aecf4c38a8c8f94c4b0fa (diff)
downloadQt-f02e04675d8c552a50c1f28b45665f1605b372f3.zip
Qt-f02e04675d8c552a50c1f28b45665f1605b372f3.tar.gz
Qt-f02e04675d8c552a50c1f28b45665f1605b372f3.tar.bz2
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/berlin-staging-1 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/berlin-staging-1: fix "configure -fast" on Windows for other maketools than nmake
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index d521276..153df10 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -3700,7 +3700,7 @@ void Configure::generateMakefiles()
QTextStream txt(&file);
txt << "all:\n";
txt << "\t" << args.join(" ") << "\n";
- txt << "\t" << dictionary[ "MAKE" ] << " -f " << it->target << "\n";
+ txt << "\t\"$(MAKE)\" -$(MAKEFLAGS) -f " << it->target << "\n";
txt << "first: all\n";
txt << "qmake:\n";
txt << "\t" << args.join(" ") << "\n";