diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2009-08-06 13:47:25 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-08-06 13:50:29 +0200 |
commit | 392ad41ba0c0d61d65e2c218ebf3b1a951a4c30a (patch) | |
tree | 6382e1976a128acdf8dbc3cc5d52494282683f50 /qmake | |
parent | 1b7d4d29d970405d5559c5641260ea1f09375b27 (diff) | |
download | qt4-tools-392ad41ba0c0d61d65e2c218ebf3b1a951a4c30a.tar.gz |
Fix WebKit compilation outside of Qt.
WebKit's .pro file uses shell commands that use QMAKE_MOVE/MOVE. The
Symbian generator propagates DEL_FILE, but forgot to also propagate
MOVE, like it is done for example in unixmake2.cpp.
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/generators/symbian/symmake_abld.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/generators/symbian/symmake_abld.cpp b/qmake/generators/symbian/symmake_abld.cpp index 17c365d60c..e537df97c9 100644 --- a/qmake/generators/symbian/symmake_abld.cpp +++ b/qmake/generators/symbian/symmake_abld.cpp @@ -190,6 +190,7 @@ void SymbianAbldMakefileGenerator::writeWrapperMakefile(QFile& wrapperFile, bool t << "QMAKE = " << Option::fixPathToTargetOS(var("QMAKE_QMAKE")) << endl; t << "DEL_FILE = " << var("QMAKE_DEL_FILE") << endl; t << "DEL_DIR = " << var("QMAKE_DEL_DIR") << endl; + t << "MOVE = " << var("QMAKE_MOVE") << endl; t << "XCOPY = xcopy /d /f /h /r /y /i" << endl; t << "ABLD = ABLD.BAT" << endl; t << "DEBUG_PLATFORMS = " << debugPlatforms.join(" ") << endl; |