Skip to content
Snippets Groups Projects
Commit 6878198a authored by ck's avatar ck
Browse files

Maemo: Clean up the local executable path some more.

Needed for constructs such as "TARGET=../xxx".
parent 52b062c4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment