Maemo: Clean up the local executable path some more.

Needed for constructs such as "TARGET=../xxx".
This commit is contained in:
ck
2010-08-09 16:42:20 +02:00
parent 52b062c43d
commit 6878198a23

View File

@@ -210,7 +210,7 @@ QString MaemoDeployableListModel::localExecutableFilePath() const
fileName += ti.target;
if (isLib)
fileName += QLatin1String(isStatic ? ".a" : ".so");
return ti.buildDir + '/' + fileName;
return QDir::cleanPath(ti.buildDir + '/' + fileName);
}
QString MaemoDeployableListModel::remoteExecutableFilePath() const