Skip to main content
summaryrefslogtreecommitdiffstats
path: root/xlc
diff options
context:
space:
mode:
authorAndrew Gvozdev2011-10-09 17:57:02 +0000
committerAndrew Gvozdev2011-10-09 17:57:27 +0000
commitc617df3475fcbaed5c3ff44ba9e7b43ff370ecf1 (patch)
tree174bef9b3a60efd4b19fde751d3b9c38b5ae5874 /xlc
parent984fb3b989876ffdd690d2218a8157f0e324c503 (diff)
downloadorg.eclipse.cdt-c617df3475fcbaed5c3ff44ba9e7b43ff370ecf1.tar.gz
org.eclipse.cdt-c617df3475fcbaed5c3ff44ba9e7b43ff370ecf1.tar.xz
org.eclipse.cdt-c617df3475fcbaed5c3ff44ba9e7b43ff370ecf1.zip
bug 360283: Discovery command does not work if workspace name has
spaces
Diffstat (limited to 'xlc')
-rw-r--r--xlc/org.eclipse.cdt.managedbuilder.xlc.core/plugin.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlc/org.eclipse.cdt.managedbuilder.xlc.core/plugin.xml b/xlc/org.eclipse.cdt.managedbuilder.xlc.core/plugin.xml
index c6a089674f9..9e581224621 100644
--- a/xlc/org.eclipse.cdt.managedbuilder.xlc.core/plugin.xml
+++ b/xlc/org.eclipse.cdt.managedbuilder.xlc.core/plugin.xml
@@ -28,7 +28,7 @@
<!-- The compiler command used will be always a C compiler command -->
<!-- The output for C or C++ projects will be different as the ScannerInfoProvider substitute the ${specs_file} variable below with a dummy "c" file or "cpp" file -->
<run
- arguments="-E -v ${plugin_state_location}/${specs_file}"
+ arguments="-E -v &quot;${plugin_state_location}/${specs_file}&quot;"
command="${XL_compilerRoot}/xlc"
class="org.eclipse.cdt.make.xlc.core.scannerconfig.XlCSpecsRunSIProvider">
</run>
@@ -65,7 +65,7 @@
<!-- The compiler command used will be always a C compiler command -->
<!-- The output for C or C++ projects will be different as the ScannerInfoProvider substitute the ${specs_file} variable below with a dummy "c" file or "cpp" file -->
<run
- arguments="-E -v ${plugin_state_location}/${specs_file}"
+ arguments="-E -v &quot;${plugin_state_location}/${specs_file}&quot;"
command="${XL_compilerRoot}/xlC"
class="org.eclipse.cdt.make.xlc.core.scannerconfig.XlCSpecsRunSIProvider">
</run>

Back to the top