aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorohair <none@none>2009-10-23 11:05:51 -0700
committerohair <none@none>2009-10-23 11:05:51 -0700
commitc4ad6c7aa604ad7e7bac2489fc2e4f97be84031a (patch)
tree707900e07ac3b0e2b4ce9701f7266c802cc5c701 /build.xml
parentd2de8d64fb3c2d8c01c3de8b0a3c492fc6f33c75 (diff)
downloadjdk8u_jaxp-c4ad6c7aa604ad7e7bac2489fc2e4f97be84031a.tar.gz
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
Reviewed-by: andrew
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 5e26e78..28831d6 100644
--- a/build.xml
+++ b/build.xml
@@ -49,6 +49,13 @@
<!-- Project build properties. -->
<property file="build.properties"/>
+ <!-- See if drop sources were included. -->
+ <condition property="drop.dir"
+ value="${drop.included.dir}"
+ else="${drop.expanded.dir}">
+ <available file="${drop.included.dir}" type="dir"/>
+ </condition>
+
<!-- Get shared targets. -->
<import file="build-defs.xml"/>
@@ -131,6 +138,16 @@
description="Populate all source file directories">
</target>
+ <!-- Populate drop_included area. -->
+ <target name="drop_included"
+ depends="clobber"
+ description="Populate all source file directories">
+ <delete dir="${drop.included.dir}"/>
+ <antcall target="source"/>
+ <move file="${drop.expanded.dir}" tofile="${drop.included.dir}"/>
+ <delete dir="${drop.included.dir}/bundles"/>
+ </target>
+
<!-- Clean up compiled files. -->
<target name="clean"
description="Delete all generated files">
@@ -142,7 +159,7 @@
<target name="clobber"
depends="clean"
description="Delete all generated files, including imported sources">
- <delete dir="${drop.dir}"/>
+ <delete dir="${drop.expanded.dir}"/>
</target>
<target name="-banner">