mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 14:15:23 +02:00
This commit is contained in:
parent
0be6729dc5
commit
46e2ef2f7c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue