Ovi Publisher: Freeze libraries when creating package

Task-number: QTCREATORBUG-772
Change-Id: I925b7f27c1dc3aae14465472c6c32d48dd33d520
Reviewed-on: http://codereview.qt.nokia.com/49
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
Pawel Polanski
2011-05-20 16:24:07 +02:00
committed by Tobias Hunger
parent b25373b304
commit 4773cdf7c0

View File

@@ -362,9 +362,11 @@ void S60PublisherOvi::runBuild(int result)
ProjectExplorer::AbstractProcessStep * makeStep = m_qt4bc->makeStep();
makeStep->init();
const ProjectExplorer::ProcessParameters * const makepp = makeStep->processParameters();
// freeze all the libraries
const QString makeArg = QLatin1String("freeze-") + makepp->arguments();
runStep(result,
QLatin1String("Running Build Steps"),
makepp->effectiveCommand() + ' ' + makepp->arguments(),
makepp->effectiveCommand() + ' ' + makeArg,
m_buildProc,
m_qmakeProc);
}