diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2010-02-26 13:45:55 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2010-02-26 13:57:36 (GMT) |
commit | ab9a87eb2a5af0b74834e247f44fb4fad0dfb8cb (patch) | |
tree | e0ef02b45c889a12e7ba1613ae2447a27f55bd4d /tools/configure | |
parent | 1ea87ec557b7b2160bb73381bd728e2fa7297a6f (diff) | |
download | Qt-ab9a87eb2a5af0b74834e247f44fb4fad0dfb8cb.zip Qt-ab9a87eb2a5af0b74834e247f44fb4fad0dfb8cb.tar.gz Qt-ab9a87eb2a5af0b74834e247f44fb4fad0dfb8cb.tar.bz2 |
fix "configure -fast" on Windows for other maketools than nmake
Task-number: QTBUG-8562
Reviewed-by: ossi
Diffstat (limited to 'tools/configure')
-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 172dcd4..36c7753 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -3709,7 +3709,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"; |