Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marchi2017-03-19 02:20:53 +0000
committerGerrit Code Review @ Eclipse.org2017-03-19 23:15:02 +0000
commitc59a4c4d7ca27d39f08d50e5c45ef40474580d35 (patch)
treea85ca39f6dab7f67ca06033a0d4a2c81e0527b30 /build/org.eclipse.cdt.managedbuilder.gnu.ui
parent1dcc3613f70f01db1c506ff311054c31be31fdf8 (diff)
downloadorg.eclipse.cdt-c59a4c4d7ca27d39f08d50e5c45ef40474580d35.tar.gz
org.eclipse.cdt-c59a4c4d7ca27d39f08d50e5c45ef40474580d35.tar.xz
org.eclipse.cdt-c59a4c4d7ca27d39f08d50e5c45ef40474580d35.zip
Bug 513860 - build: Change id of pthread option
There is a collision in the ids of the pthread options, "cdt.managedbuild.tool.gnu.c.pthread" is there twice. Change the ids to be more in line with the other options. Change-Id: Ice9d003b82b3740df6420811e90a2b157375c243 Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca>
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.gnu.ui')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
index 54bbb209765..d24ee939936 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
@@ -1845,7 +1845,7 @@
category="gnu.cpp.compiler.category.other"
command="-pthread"
defaultValue="false"
- id="cdt.managedbuild.tool.gnu.cpp.pthread"
+ id="gnu.cpp.compiler.option.pthread"
name="%Option.Pthread"
tip="%Option.PthreadCompilerTip"
valueType="boolean">
@@ -1858,7 +1858,7 @@
category="gnu.c.compiler.category.other"
command="-pthread"
defaultValue="false"
- id="cdt.managedbuild.tool.gnu.c.pthread"
+ id="gnu.c.compiler.option.pthread"
name="%Option.Pthread"
tip="%Option.PthreadCompilerTip"
valueType="boolean">
@@ -1892,7 +1892,7 @@
category="gnu.cpp.link.category.options"
command="-pthread"
defaultValue="false"
- id="cdt.managedbuild.tool.gnu.c.pthread"
+ id="gnu.cpp.link.option.pthread"
name="%Option.Pthread"
tip="%Option.PthreadLinkerTip"
valueType="boolean">

Back to the top