diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-26 18:46:55 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-26 18:46:55 (GMT) |
commit | f02e04675d8c552a50c1f28b45665f1605b372f3 (patch) | |
tree | 8267b3d10bd59ca3ecad06f505d0a703df5d95f9 /tools | |
parent | 5d1d426afe07458a91b4908881554653285ed04c (diff) | |
parent | 8733baf8b770a5fca12aecf4c38a8c8f94c4b0fa (diff) | |
download | Qt-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.cpp | 2 |
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"; |