1
0
Fork 0
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:
Leo Treggiari 2005-08-12 21:09:53 +00:00
parent 725ad300be
commit 9ac46ef79e

View file

@ -179,9 +179,9 @@ public class ManagedBuildGnuToolInfo implements IManagedBuildGnuToolInfo {
}
//myCommandInputs.add(inputs);
if (primaryInput) {
myCommandDependencies.add(0, inputs);
myCommandDependencies.addAll(0, inputs);
} else {
myCommandDependencies.add(inputs);
myCommandDependencies.addAll(inputs);
}
//myEnumeratedInputs.add(inputs);
} catch( BuildException ex ) {