1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00
This commit is contained in:
David Inglis 2003-09-22 12:44:46 +00:00
parent 0be6729dc5
commit 46e2ef2f7c

View file

@ -158,7 +158,7 @@ public class MakeBuilder extends ACBuilder {
String[] newArgs = makeArray(args);
buildArguments = new String[targets.length + newArgs.length];
System.arraycopy(newArgs, 0, buildArguments, 0, newArgs.length);
System.arraycopy(targets, 0, buildArguments, newArgs.length + 1, targets.length);
System.arraycopy(targets, 0, buildArguments, newArgs.length, targets.length);
}
}
Process p = launcher.execute(buildCommand, buildArguments, env, workingDirectory);