Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorEike Stepper2010-02-17 08:23:10 +0000
committerEike Stepper2010-02-17 08:23:10 +0000
commit7dbd7ed4c7c0474f2960d2a607b88a8de9a533da (patch)
tree4e9a44b386b6e2251fe3c9663c96375500e4db6a /releng
parent689906176fc65e524b6f80d3bbc92fbe1a499aea (diff)
downloadcdo-7dbd7ed4c7c0474f2960d2a607b88a8de9a533da.tar.gz
cdo-7dbd7ed4c7c0474f2960d2a607b88a8de9a533da.tar.xz
cdo-7dbd7ed4c7c0474f2960d2a607b88a8de9a533da.zip
*** empty log message ***
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.emf.cdo.releng/build.xml24
1 files changed, 4 insertions, 20 deletions
diff --git a/releng/org.eclipse.emf.cdo.releng/build.xml b/releng/org.eclipse.emf.cdo.releng/build.xml
index 2577147fe0..93fba164c8 100644
--- a/releng/org.eclipse.emf.cdo.releng/build.xml
+++ b/releng/org.eclipse.emf.cdo.releng/build.xml
@@ -28,22 +28,6 @@
<isset property="SITE_SIGNING" />
</condition>
- <condition property="clean.tools" value="${env.CLEAN_TOOLS}" else="false">
- <isset property="CLEAN_TOOLS" />
- </condition>
-
- <condition property="clean.tp" value="${env.CLEAN_TP}" else="false">
- <isset property="CLEAN_TP" />
- </condition>
-
- <condition property="clean.workspace" value="${env.CLEAN_WORKSPACE}" else="true">
- <isset property="CLEAN_WORKSPACE" />
- </condition>
-
- <condition property="clean.output" value="${env.CLEAN_OUTPUT}" else="true">
- <isset property="CLEAN_OUTPUT" />
- </condition>
-
<!-- Default properties intended to be overridden by entries in the above property file -->
<property name="tools" location="${build.root}/tools" />
<property name="result" location="${build.root}/result" />
@@ -106,22 +90,22 @@
</sequential>
</macrodef>
- <target name="init.clean.tools" if="${clean.tools}">
+ <target name="init.clean.tools" if="env.CLEAN_TOOLS">
<echo message="Cleaning tools..." />
<antcall target="clean.tools" />
</target>
- <target name="init.clean.tp" if="${clean.tp}}">
+ <target name="init.clean.tp" if="env.CLEAN_TP">
<echo message="Cleaning target platform..." />
<antcall target="clean.tp" />
</target>
- <target name="init.clean.workspace" if="${clean.workspace}">
+ <target name="init.clean.workspace" if="env.CLEAN_WORKSPACE">
<echo message="Cleaning workspace..." />
<antcall target="clean.workspace" />
</target>
- <target name="init.clean.output" if="${clean.output}">
+ <target name="init.clean.output" if="env.CLEAN_OUTPUT">
<echo message="Cleaning output..." />
<antcall target="clean.output" />
</target>

Back to the top