1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

since platform bug is fixed we can revert some changes

This commit is contained in:
David Inglis 2004-06-01 20:28:17 +00:00
parent a5b6d849f2
commit 89bbf55f97

View file

@ -332,10 +332,7 @@ public class BuildInfoFactory {
IProjectDescription description = project.getDescription();
ICommand builder = MakeProjectNature.getBuildSpec(description, builderID);
args.put(name, value);
ICommand newBuilder = description.newCommand();
newBuilder.setBuilderName(builder.getBuilderName());
newBuilder.setArguments(args);
description = MakeProjectNature.setBuildSpec(description, newBuilder);
builder.setArguments(args);
project.setDescription(description, null);
}