Skip to content
Snippets Groups Projects
Commit c5e743e6 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

Maemo: Bugfix: Use TargetInformation::workingDir in all cases.

We currently use buildDir in one place and workingDir in another,
which breaks projects that have DESTDIR set.

Reviewed-by: Tobias Hunger
parent 803206d5
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ QString MaemoDeployableListModel::localExecutableFilePath() const
fileName += ti.target;
if (isLib)
fileName += QLatin1String(isStatic ? ".a" : ".so");
return QDir::cleanPath(ti.buildDir + '/' + fileName);
return QDir::cleanPath(ti.workingDir + '/' + 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