Maemo: Fix "make distclean" step for publishing.

Task-number: QTCREATORBUG-3343
This commit is contained in:
Christian Kandeler
2010-12-16 18:33:30 +01:00
parent b002eee6cc
commit 93fc835d08

View File

@@ -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());
}