summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-02-28 15:33:14 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2011-02-28 15:33:14 (GMT)
commita220e7c51c701a81a675a46a76838260527fcc8e (patch)
treea12130be836dba239c22dbd7d2af9db05d0a830c /tools
parenta27bce53b8d629c6eb41804476594abd0c9a482f (diff)
parentf691e052afbc6fef9f2954e7a7915be85a10f473 (diff)
downloadQt-a220e7c51c701a81a675a46a76838260527fcc8e.zip
Qt-a220e7c51c701a81a675a46a76838260527fcc8e.tar.gz
Qt-a220e7c51c701a81a675a46a76838260527fcc8e.tar.bz2
Merge commit 'refs/merge-requests/1113' of git://gitorious.org/qt/qt into merge-requests/1113
Conflicts: doc/src/development/qmake-manual.qdoc
Diffstat (limited to 'tools')
-rw-r--r--tools/shared/symbian/epocroot.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/shared/symbian/epocroot.cpp b/tools/shared/symbian/epocroot.cpp
index e128cd2..5e6bc12 100644
--- a/tools/shared/symbian/epocroot.cpp
+++ b/tools/shared/symbian/epocroot.cpp
@@ -99,6 +99,11 @@ static void fixEpocRoot(QString &path)
if (!path.size() || path[path.size()-1] != QLatin1Char('/')) {
path += QLatin1Char('/');
}
+#ifdef Q_OS_WIN32
+ // Make sure we have drive letter in epocroot
+ if (path.startsWith(QLatin1Char('/')))
+ path.prepend(QDir::currentPath().left(2));
+#endif
}
/**