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

Maemo: Fix "make distclean" step for publishing.

Task-number: QTCREATORBUG-3343
parent b002eee6
No related branches found
No related tags found
No related merge requests found
......@@ -160,8 +160,11 @@ void MaemoPublisherFremantleFree::createPackage()
}
setState(RunningQmake);
ProjectExplorer::AbstractProcessStep * const qmakeStep
= m_buildConfig->qmakeStep();
qmakeStep->init();
const ProjectExplorer::ProcessParameters * const pp
= m_buildConfig->qmakeStep()->processParameters();
= qmakeStep->processParameters();
m_process->start(pp->effectiveCommand() + QLatin1String(" ")
+ pp->effectiveArguments());
}
......
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