1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

Fix for bugzilla 83877 -- [Managed Build] Project converter misses configuration names

Converter now applies the original configuration name to the new config
This commit is contained in:
Sean Evoy 2005-01-27 21:09:14 +00:00
parent 35805f1d38
commit 868fa103f4

View file

@ -182,6 +182,7 @@ class UpdateManagedProject12 {
// Create the new configuration // Create the new configuration
newConfig = newProject.createConfiguration(newParentConfig, newConfigId); newConfig = newProject.createConfiguration(newParentConfig, newConfigId);
newConfig.setName(oldConfig.getAttribute(IConfigurationV2.NAME));
Element oldTarget = (Element)oldConfig.getParentNode(); Element oldTarget = (Element)oldConfig.getParentNode();
if(oldTarget.hasAttribute(ITarget.ARTIFACT_NAME)){ if(oldTarget.hasAttribute(ITarget.ARTIFACT_NAME)){