forked from qt-creator/qt-creator
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
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user