mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix bug with adding Option inputs to the dependency list
This commit is contained in:
parent
725ad300be
commit
9ac46ef79e
1 changed files with 2 additions and 2 deletions
|
@ -179,9 +179,9 @@ public class ManagedBuildGnuToolInfo implements IManagedBuildGnuToolInfo {
|
||||||
}
|
}
|
||||||
//myCommandInputs.add(inputs);
|
//myCommandInputs.add(inputs);
|
||||||
if (primaryInput) {
|
if (primaryInput) {
|
||||||
myCommandDependencies.add(0, inputs);
|
myCommandDependencies.addAll(0, inputs);
|
||||||
} else {
|
} else {
|
||||||
myCommandDependencies.add(inputs);
|
myCommandDependencies.addAll(inputs);
|
||||||
}
|
}
|
||||||
//myEnumeratedInputs.add(inputs);
|
//myEnumeratedInputs.add(inputs);
|
||||||
} catch( BuildException ex ) {
|
} catch( BuildException ex ) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue