diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-06-15 10:49:26 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-06-15 11:00:38 (GMT) |
commit | 78560390b948127262a9ebb5f4dd355b6c517e94 (patch) | |
tree | 75edfb1e04f2cee9ce39cd33c659649fd757606d /tools | |
parent | 442784de39c8128f418354fdcfdb3988bb599104 (diff) | |
download | Qt-78560390b948127262a9ebb5f4dd355b6c517e94.zip Qt-78560390b948127262a9ebb5f4dd355b6c517e94.tar.gz Qt-78560390b948127262a9ebb5f4dd355b6c517e94.tar.bz2 |
Change $${EPOCROOT} to also have drive if EPOCROOT env variable has it
Since sbsv2 toolchain supports having sources and SDK on different
drives, $${EPOCROOT} needs to contain drive letter to make it work.
Reviewed-by: Jason Barron
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared/symbian/epocroot.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/shared/symbian/epocroot.cpp b/tools/shared/symbian/epocroot.cpp index 064e056..ae1dcb1 100644 --- a/tools/shared/symbian/epocroot.cpp +++ b/tools/shared/symbian/epocroot.cpp @@ -105,10 +105,6 @@ static void fixEpocRoot(QString &path) { path.replace("\\", "/"); - if (path.size() > 1 && path[1] == QChar(':')) { - path = path.mid(2); - } - if (!path.size() || path[path.size()-1] != QChar('/')) { path += QChar('/'); } |