1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 06:45:43 +02:00

[240616] make target should not invoke extra clean command, applied patch

This commit is contained in:
Alena Laskavaia 2009-01-15 19:10:31 +00:00
parent 7f0debb02e
commit 0308b568ed

View file

@ -290,6 +290,7 @@ public class MakeTarget extends PlatformObject implements IMakeTarget {
info.setStopOnError(isStopOnError()); info.setStopOnError(isStopOnError());
info.setIncrementalBuildEnable(true); info.setIncrementalBuildEnable(true);
info.setBuildAttribute(IMakeBuilderInfo.BUILD_TARGET_INCREMENTAL, getBuildAttribute(IMakeTarget.BUILD_TARGET, "")); //$NON-NLS-1$ info.setBuildAttribute(IMakeBuilderInfo.BUILD_TARGET_INCREMENTAL, getBuildAttribute(IMakeTarget.BUILD_TARGET, "")); //$NON-NLS-1$
info.setCleanBuildEnable(false);
info.setEnvironment(getExpandedEnvironment()); info.setEnvironment(getExpandedEnvironment());
info.setAppendEnvironment(appendEnvironment()); info.setAppendEnvironment(appendEnvironment());
if (container != null && container != project) { if (container != null && container != project) {