Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJeff Johnston2019-05-16 20:43:05 +0000
committerJeff Johnston2019-05-16 20:46:02 +0000
commit74e63a90132d04caa1a7ca5dee70c36b9fb6c968 (patch)
treede80e877ed339bc543248dfc7e4da4cbbc633814 /core
parentdffd0d1513f79745ef65861035717b1f6bebf77d (diff)
downloadorg.eclipse.cdt-74e63a90132d04caa1a7ca5dee70c36b9fb6c968.tar.gz
org.eclipse.cdt-74e63a90132d04caa1a7ca5dee70c36b9fb6c968.tar.xz
org.eclipse.cdt-74e63a90132d04caa1a7ca5dee70c36b9fb6c968.zip
Bug 547174 - Clean core project doesn't always show active in console
- add missing ProjectDescription.setBuildConfigs calls to CoreBuildLaunchBarTracker, CoreBuildLaunchConfigDelegate and CBuildConfiguration Change-Id: I0d1097d04f3a210a6a7e9f8ad35adb9ba5d7c3d6
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java
index 1a508884f17..3ac52345458 100644
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java
+++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/CBuildConfiguration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2015, 2016 QNX Software Systems and others.
+ * Copyright (c) 2015, 2019 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -298,6 +298,7 @@ public abstract class CBuildConfiguration extends PlatformObject implements ICBu
names.remove(config.getName());
names.add(config.getName());
+ projectDesc.setBuildConfigs(names.toArray(new String[0]));
projectDesc.setActiveBuildConfig(config.getName());
project.setDescription(projectDesc, monitor);
}

Back to the top