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

Maemo: Fix order of command line options for sysroot installations.

Change-Id: Ib7b30a391afceec4262a396b3eca7893a6076ab8
Reviewed-on: http://codereview.qt.nokia.com/2117


Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent aaab70f1
No related branches found
No related tags found
No related merge requests found
......@@ -235,11 +235,10 @@ BuildStepConfigWidget *MaemoInstallDebianPackageToSysrootStep::createConfigWidge
return new MaemoInstallDebianPackageToSysrootWidget(this);
}
QStringList MaemoInstallDebianPackageToSysrootStep::madArguments() const
{
return QStringList() << QLatin1String("xdpkg") << QLatin1String("-i")
<< QLatin1String("--no-force-downgrade");
return QStringList() << QLatin1String("xdpkg") << QLatin1String("--no-force-downgrade")
<< QLatin1String("-i");
}
const QString MaemoInstallDebianPackageToSysrootStep::Id
......
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