Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-02-17 08:34:39 +0000
committerEike Stepper2010-02-17 08:34:39 +0000
commit23c4a2c7cbb69fe6503200a2799104a5e015bd32 (patch)
tree66aa65593022423e844cfdfe28548500a787db47
parentaf25a8c09964527fd37eaed3ec5d54e3dc36f483 (diff)
downloadcdo-23c4a2c7cbb69fe6503200a2799104a5e015bd32.tar.gz
cdo-23c4a2c7cbb69fe6503200a2799104a5e015bd32.tar.xz
cdo-23c4a2c7cbb69fe6503200a2799104a5e015bd32.zip
*** empty log message ***
-rw-r--r--releng/org.eclipse.emf.cdo.releng/build.xml24
1 files changed, 20 insertions, 4 deletions
diff --git a/releng/org.eclipse.emf.cdo.releng/build.xml b/releng/org.eclipse.emf.cdo.releng/build.xml
index b55bf40584..c312951753 100644
--- a/releng/org.eclipse.emf.cdo.releng/build.xml
+++ b/releng/org.eclipse.emf.cdo.releng/build.xml
@@ -28,6 +28,22 @@
<isset property="SITE_SIGNING" />
</condition>
+ <condition property="clean.tools" value="true">
+ <equals arg1="${env.CLEAN_TOOLS}" arg2="true" />
+ </condition>
+
+ <condition property="clean.tp" value="true">
+ <equals arg1="${env.CLEAN_TP}" arg2="true" />
+ </condition>
+
+ <condition property="clean.workspace" value="true">
+ <equals arg1="${env.CLEAN_WORKSPACE}" arg2="true" />
+ </condition>
+
+ <condition property="clean.output" value="true">
+ <equals arg1="${env.CLEAN_OUTPUT}" arg2="true" />
+ </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" />
@@ -90,22 +106,22 @@
</sequential>
</macrodef>
- <target name="init.clean.tools" if="env.CLEAN_TOOLS">
+ <target name="init.clean.tools" if="clean.tools">
<echo message="Cleaning tools..." />
<antcall target="clean.tools" />
</target>
- <target name="init.clean.tp" if="env.CLEAN_TP">
+ <target name="init.clean.tp" if="clean.tp">
<echo message="Cleaning target platform..." />
<antcall target="clean.tp" />
</target>
- <target name="init.clean.workspace" if="env.CLEAN_WORKSPACE">
+ <target name="init.clean.workspace" if="clean.workspace">
<echo message="Cleaning workspace..." />
<antcall target="clean.workspace" />
</target>
- <target name="init.clean.output" if="env.CLEAN_OUTPUT">
+ <target name="init.clean.output" if="clean.output">
<echo message="Cleaning output..." />
<antcall target="clean.output" />
</target>

Back to the top