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.native/build.properties
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.native/build.properties')
-rw-r--r--core/org.eclipse.cdt.core.native/build.properties2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core.native/build.properties b/core/org.eclipse.cdt.core.native/build.properties
index 45d3b3aeced..382729f35b0 100644
--- a/core/org.eclipse.cdt.core.native/build.properties
+++ b/core/org.eclipse.cdt.core.native/build.properties
@@ -17,7 +17,7 @@ src.includes = about.html
javadoc.packages = org.eclipse.cdt.utils.*,\
org.eclipse.cdt.utils.pty.*,\
org.eclipse.cdt.utils.spawner.*
-source.. = utils/
+source.. = src/
jre.compilation.profile=JavaSE-1.7
javacSource=1.7

Back to the top