mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 01:06:01 +02:00
bug 319512: Fixed error in last commit
This commit is contained in:
parent
99f4235d7e
commit
6ff2b6838e
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ public class ManagedBuildGnuToolInfo implements IManagedBuildGnuToolInfo {
|
|||
Vector<String> myEnumeratedInputs = new Vector<String>(); // Complete list of individual inputs
|
||||
|
||||
IInputType[] inTypes = tool.getInputTypes();
|
||||
if (inTypes != null) {
|
||||
if (inTypes != null && inTypes.length > 0) {
|
||||
for (IInputType type : inTypes) {
|
||||
Vector<String> itCommandInputs = new Vector<String>(); // Inputs for the tool command line for this input-type
|
||||
Vector<String> itCommandDependencies = new Vector<String>(); // Dependencies for the make rule for this input-type
|
||||
|
|
Loading…
Add table
Reference in a new issue