Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Oberhuber2014-05-27 08:59:33 +0000
committerDoug Schaefer2014-05-27 16:04:41 +0000
commit2b9bbdec613af66f1d7ab99d0221067438c79bd7 (patch)
tree87f22744576610067a2741a9c47dbfd4515f30f1 /core/org.eclipse.cdt.core.win32/src/org
parent451cdd57875fb6d52197097e4c735348559163d9 (diff)
downloadorg.eclipse.cdt-2b9bbdec613af66f1d7ab99d0221067438c79bd7.tar.gz
org.eclipse.cdt-2b9bbdec613af66f1d7ab99d0221067438c79bd7.tar.xz
org.eclipse.cdt-2b9bbdec613af66f1d7ab99d0221067438c79bd7.zip
Bug 303083 - Make cdt.core.native plugin consistent after rename
The org.eclipse.cdt.core.native plugin has been renamed from org.eclipse.cdt.core.spawner but that has left a couple inconsistencies which are fixed with this commit: 1. Rename o.e.cdt.internal.core.spawner package -> natives package Note that renaming the package to "native" was not possible since "native" is a Java keyword, thus I chose "natives" 2. Rename CSpawnerPlugin -> CNativePlugin, update win32 fragment 3. Fix PLUGIN_ID for proper logging with IStatus 4. Fix MANIFEST.MF export-package;split declaration 5. Add "version" spec on "export-package" for pty and spawner packages 6. Rename "utils" source folder to "src" as this is standard practice 7. Remove "spawner" from the list of Javadoc plugins in cdt.core Change-Id: Ie5d1112d3f2da120dd5b1446cb6a137382226f0f Signed-off-by: Martin Oberhuber <martin.oberhuber@windriver.com> Reviewed-on: https://git.eclipse.org/r/27346 Tested-by: Hudson CI Reviewed-by: Doug Schaefer <dschaefer@qnx.com>
Diffstat (limited to 'core/org.eclipse.cdt.core.win32/src/org')
-rw-r--r--core/org.eclipse.cdt.core.win32/src/org/eclipse/cdt/internal/core/win32/ProcessList.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core.win32/src/org/eclipse/cdt/internal/core/win32/ProcessList.java b/core/org.eclipse.cdt.core.win32/src/org/eclipse/cdt/internal/core/win32/ProcessList.java
index 77946a1ad01..fabd130fd5a 100644
--- a/core/org.eclipse.cdt.core.win32/src/org/eclipse/cdt/internal/core/win32/ProcessList.java
+++ b/core/org.eclipse.cdt.core.win32/src/org/eclipse/cdt/internal/core/win32/ProcessList.java
@@ -21,7 +21,7 @@ import java.util.ArrayList;
import org.eclipse.cdt.core.IProcessInfo;
import org.eclipse.cdt.core.IProcessList;
-import org.eclipse.cdt.internal.core.spawner.CSpawnerPlugin;
+import org.eclipse.cdt.internal.core.natives.CNativePlugin;
import org.eclipse.cdt.utils.spawner.ProcessFactory;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Path;
@@ -43,7 +43,7 @@ public class ProcessList implements IProcessList {
Process p = null;
String command = null;
InputStream in = null;
- Bundle bundle = Platform.getBundle(CSpawnerPlugin.PLUGIN_ID);
+ Bundle bundle = Platform.getBundle(CNativePlugin.PLUGIN_ID);
IProcessInfo[] procInfos = NOPROCESS;
try {

Back to the top