1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-26 02:15:31 +02:00

Bug #181490: parallel build option reset

This commit is contained in:
Oleg Krasilnikov 2007-04-13 13:07:15 +00:00
parent 61c00b3d3b
commit 30060e8e7d

View file

@ -807,7 +807,7 @@ public class Builder extends BuildObject implements IBuilder, IMatchKeyProvider
if(parallelNum != null) if(parallelNum != null)
element.setAttribute(ATTRIBUTE_PARALLELIZATION_NUMBER, parallelNum.toString()); element.setAttribute(ATTRIBUTE_PARALLELIZATION_NUMBER, parallelNum.toString());
if(parallelBuildOn != null) if(parallelBuildOn != null)
element.setAttribute(ATTRIBUTE_MANAGED_BUILD_ON, parallelBuildOn.toString()); element.setAttribute(ATTRIBUTE_PARALLEL_BUILD_ON, parallelBuildOn.toString());
// Note: build file generator cannot be specified in a project file because // Note: build file generator cannot be specified in a project file because
// an IConfigurationElement is needed to load it! // an IConfigurationElement is needed to load it!
if (buildFileGeneratorElement != null) { if (buildFileGeneratorElement != null) {
@ -1331,7 +1331,7 @@ public class Builder extends BuildObject implements IBuilder, IMatchKeyProvider
public void checkForMigrationSupport() { public void checkForMigrationSupport() {
String tmpId = null; // String tmpId = null;
boolean isExists = false; boolean isExists = false;
if (getSuperClass() == null) { if (getSuperClass() == null) {