mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
The ManagedBuildInfo.readToolsOptions() now uses the IResourceConfiguration.getToolsToInvoke() instead of the IResourceConfiguration.getTools().
This commit is contained in:
parent
300ac375d9
commit
c3e35e32e2
1 changed files with 1 additions and 1 deletions
|
@ -1251,7 +1251,7 @@ public class ManagedBuildInfo implements IManagedBuildInfo, IScannerInfo {
|
||||||
// calculate parameters depending of object type
|
// calculate parameters depending of object type
|
||||||
if (obj instanceof IResourceConfiguration) {
|
if (obj instanceof IResourceConfiguration) {
|
||||||
resPath = new Path(((IResourceConfiguration)obj).getResourcePath());
|
resPath = new Path(((IResourceConfiguration)obj).getResourcePath());
|
||||||
t = ((IResourceConfiguration)obj).getTools();
|
t = ((IResourceConfiguration)obj).getToolsToInvoke();
|
||||||
} else if (obj instanceof IConfiguration) {
|
} else if (obj instanceof IConfiguration) {
|
||||||
t = ((IConfiguration)obj).getFilteredTools();
|
t = ((IConfiguration)obj).getFilteredTools();
|
||||||
} else { return entries; } // wrong object passed
|
} else { return entries; } // wrong object passed
|
||||||
|
|
Loading…
Add table
Reference in a new issue