summaryrefslogtreecommitdiffstats
path: root/qmake/generators/win32/mingw_make.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@theqtcompany.com>2016-02-11 12:57:10 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2016-02-11 12:57:10 +0000
commit321658d288b8f790ecfe5ab5198bf6c0d27f0f73 (patch)
tree24a4be4408ad31f82f4f1c3374c66dd986148844 /qmake/generators/win32/mingw_make.cpp
parent7e85e7ced7079d620ae73f8664a68530992c6af1 (diff)
parentd456f87ece0323982b7601047712545ab95426ad (diff)
Merge "Merge remote-tracking branch 'origin/5.6' into dev" into refs/staging/dev
Diffstat (limited to 'qmake/generators/win32/mingw_make.cpp')
-rw-r--r--qmake/generators/win32/mingw_make.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/win32/mingw_make.cpp b/qmake/generators/win32/mingw_make.cpp
index 3f150b5726..382b10c37b 100644
--- a/qmake/generators/win32/mingw_make.cpp
+++ b/qmake/generators/win32/mingw_make.cpp
@@ -46,7 +46,7 @@ QString MingwMakefileGenerator::escapeDependencyPath(const QString &path) const
{
QString ret = path;
ret.replace('\\', "/"); // ### this shouldn't be here
- ret.replace(' ', "\\ ");
+ ret.replace(' ', QLatin1String("\\ "));
return ret;
}