mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56: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:
parent
35805f1d38
commit
868fa103f4
1 changed files with 1 additions and 0 deletions
|
@ -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)){
|
||||||
|
|
Loading…
Add table
Reference in a new issue