From 4773cdf7c07b378af2cb0c1447734d58870e3075 Mon Sep 17 00:00:00 2001 From: Pawel Polanski Date: Fri, 20 May 2011 16:24:07 +0200 Subject: [PATCH] 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 --- src/plugins/qt4projectmanager/qt-s60/s60publisherovi.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/qt4projectmanager/qt-s60/s60publisherovi.cpp b/src/plugins/qt4projectmanager/qt-s60/s60publisherovi.cpp index 13ec6d6c397..8a0a8e74b3a 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60publisherovi.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60publisherovi.cpp @@ -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); }