Maemo: Don't unify packaging metadata between targets as rigorously.

This allows people to do external changes to their files without
Creator overwriting them.

Change-Id: I71fc7cf6dabb9a61762992b8c01f971f563e17ab
Reviewed-on: http://codereview.qt.nokia.com/12
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
Christian Kandeler
2011-05-19 12:42:37 +02:00
committed by Tobias Hunger
parent ed0f9f678e
commit 782953513e

View File

@@ -268,8 +268,10 @@ void AbstractQt4MaemoTarget::handleTargetAdded(ProjectExplorer::Target *target)
this, SLOT(handleTargetAdded(ProjectExplorer::Target*)));
connect(project(), SIGNAL(aboutToRemoveTarget(ProjectExplorer::Target*)),
SLOT(handleTargetToBeRemoved(ProjectExplorer::Target*)));
if (createTemplates() == ActionFailed)
const ActionStatus status = createTemplates();
if (status == ActionFailed)
return;
if (status == ActionSuccessful) // Don't do this when the packaging data already exists.
initPackagingSettingsFromOtherTarget();
handleTargetAddedSpecial();
m_isInitialized = true;