Skip to content
Snippets Groups Projects
Commit 6dd2ef53 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Fix directory separator

parent 1a2a4f63
No related branches found
No related tags found
No related merge requests found
...@@ -362,7 +362,7 @@ bool MaemoPackageCreationStep::packagingNeeded() const ...@@ -362,7 +362,7 @@ bool MaemoPackageCreationStep::packagingNeeded() const
QString MaemoPackageCreationStep::packageFilePath() const QString MaemoPackageCreationStep::packageFilePath() const
{ {
return buildDirectory() % QDir::separator() % executableFileName().toLower() return buildDirectory() % '/' % executableFileName().toLower()
% QLatin1Char('_') % versionString() % QLatin1String("_armel.deb"); % QLatin1Char('_') % versionString() % QLatin1String("_armel.deb");
} }
......
...@@ -84,7 +84,7 @@ void MaemoPackageCreationWidget::init() ...@@ -84,7 +84,7 @@ void MaemoPackageCreationWidget::init()
QString MaemoPackageCreationWidget::summaryText() const QString MaemoPackageCreationWidget::summaryText() const
{ {
return tr("<b>Create Package:</b> ") + m_step->packageFilePath(); return tr("<b>Create Package:</b> ") + QDir::toNativeSeparators(m_step->packageFilePath());
} }
QString MaemoPackageCreationWidget::displayName() const QString MaemoPackageCreationWidget::displayName() 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