Maemo: Fix package name construction.

This commit is contained in:
ck
2010-04-14 15:43:22 +02:00
parent 8a4ac577ef
commit 5df34cad07

View File

@@ -262,9 +262,7 @@ bool MaemoPackageCreationStep::packagingNeeded() const
QString MaemoPackageCreationStep::packageFilePath(const QString &executableFilePath)
{
return executableFilePath % QLatin1Char('/')
% QFileInfo(executableFilePath).fileName() % versionString()
% QLatin1String("_armel.deb");
return executableFilePath % versionString() % QLatin1String("_armel.deb");
}
QString MaemoPackageCreationStep::versionString()