summaryrefslogtreecommitdiff
path: root/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-02-24 17:17:25 +0100
committerTobias Hunger <tobias.hunger@nokia.com>2011-02-24 17:54:09 +0100
commit4792715f205036f94b61aba3c582c0cff0d722bf (patch)
treed03987cf656bf18a0d24e5b4ae8c310a23fbc90e /src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp
parent1cc74effde4cbcd9ee1d7e88143d9d826901cf0e (diff)
downloadqt-creator-4792715f205036f94b61aba3c582c0cff0d722bf.tar.gz
Symbian: Allow for EPOCROOT and project to be on different drives
Allow for EPOCROOT and the project to be on different drives when using SBSv2. Task-number: QTCREATORBUG-3781
Diffstat (limited to 'src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp')
-rw-r--r--src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp b/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp
index 7381b9878b..92de51109f 100644
--- a/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp
+++ b/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp
@@ -51,7 +51,7 @@ S60ProjectChecker::reportIssues(const QString &proFile, const QtVersion *version
QFileInfo cppheader(epocRootDir + QLatin1String("/epoc32/include/stdapis/string.h"));
#if defined (Q_OS_WIN)
// Report an error if project- and epoc directory are on different drives:
- if (!epocRootDir.startsWith(proFile.left(3), Qt::CaseInsensitive)) {
+ if (!epocRootDir.startsWith(proFile.left(3), Qt::CaseInsensitive) && !version->isBuildWithSymbianSbsV2()) {
results.append(Task(Task::Error,
QCoreApplication::translate("ProjectExplorer::Internal::S60ProjectChecker",
"The Symbian SDK and the project sources must reside on the same drive."),