Skip to main content
summaryrefslogtreecommitdiffstats
path: root/cross
diff options
context:
space:
mode:
authorSimeon Andreev2019-02-07 13:39:34 +0000
committerJonah Graham2019-02-07 18:00:41 +0000
commit31b4c257b10769a72182024cd77ed85eda01fd07 (patch)
treec91cd4f8d9d6fad790a2821e82b6bfac0b7d5694 /cross
parentec54cf72416f09fc296f7e535e04290eb6ca9d46 (diff)
downloadorg.eclipse.cdt-31b4c257b10769a72182024cd77ed85eda01fd07.tar.gz
org.eclipse.cdt-31b4c257b10769a72182024cd77ed85eda01fd07.tar.xz
org.eclipse.cdt-31b4c257b10769a72182024cd77ed85eda01fd07.zip
Bug 509263 - Fix warnings for missing enablement expression on start-up
This change adds empty enablement expressions where they are missing, in order to prevent start-up warnings such as: Enablement expression is missing for config provider for org.eclipse.cdt.debug.core.coreBuildDescriptorType Change-Id: Id7f2b6149230ddde24764772c5b67ff5eef28b65 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com>
Diffstat (limited to 'cross')
-rw-r--r--cross/org.eclipse.cdt.launch.serial.core/META-INF/MANIFEST.MF2
-rw-r--r--cross/org.eclipse.cdt.launch.serial.core/plugin.xml2
2 files changed, 3 insertions, 1 deletions
diff --git a/cross/org.eclipse.cdt.launch.serial.core/META-INF/MANIFEST.MF b/cross/org.eclipse.cdt.launch.serial.core/META-INF/MANIFEST.MF
index e241c6317a7..00710d320f8 100644
--- a/cross/org.eclipse.cdt.launch.serial.core/META-INF/MANIFEST.MF
+++ b/cross/org.eclipse.cdt.launch.serial.core/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Launch over Serial Core Plugin
Bundle-SymbolicName: org.eclipse.cdt.launch.serial.core;singleton:=true
-Bundle-Version: 1.0.1.qualifier
+Bundle-Version: 1.0.100.qualifier
Bundle-Vendor: Eclipse CDT
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.13.0",
diff --git a/cross/org.eclipse.cdt.launch.serial.core/plugin.xml b/cross/org.eclipse.cdt.launch.serial.core/plugin.xml
index 7ca6053ce00..d8834e48d0d 100644
--- a/cross/org.eclipse.cdt.launch.serial.core/plugin.xml
+++ b/cross/org.eclipse.cdt.launch.serial.core/plugin.xml
@@ -23,6 +23,8 @@
class="org.eclipse.cdt.launch.serial.internal.SerialFlashLaunchConfigProvider"
descriptorType="org.eclipse.cdt.debug.core.coreBuildDescriptorType"
priority="10">
+ <enablement>
+ </enablement>
</configProvider>
</extension>

Back to the top