summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorChien Yang <[email protected]>2007-04-03 23:14:20 +0000
committerChien Yang <[email protected]>2007-04-03 23:14:20 +0000
commit56c485453abdddc3282bab4b42d76c920f5e29af (patch)
tree9fc4e026ca5da88b5833e78c7ab6c332ee41c19e /build.xml
parent1a9b22fe879d999ac84c7926a77f256c777ca6a1 (diff)
1) Submitted by Nvaidya - Fixed to Issue 447 : Enhance Element Traversal To Improve Pick Hits
2) Renamed zip file for src target. 3) Removed zip clean targets. git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@809 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml16
1 files changed, 4 insertions, 12 deletions
diff --git a/build.xml b/build.xml
index 791ab81..5240576 100644
--- a/build.xml
+++ b/build.xml
@@ -683,8 +683,8 @@
<target name="initSrc" depends="setupPlatform">
<property name="platformSrc" location="${dist}/${platform}/src"/>
- <property name="j3dZip" value="j3d-${version_base_file}-src.zip"/>
- <property name="vecmathZip" value="vecmath-${version_base_file}-src.zip"/>
+ <property name="j3dZip" value="j3d-${version_file}-src.zip"/>
+ <property name="vecmathZip" value="vecmath-${version_file}-src.zip"/>
<property name="j3dZipFile" location="${platformSrc}/${j3dZip}"/>
<property name="vecmathZipFile" location="${platformSrc}/${vecmathZip}"/>
@@ -702,7 +702,7 @@
<target name="src" depends="initSrc, echoSrc, j3dSrc, vecmathSrc">
</target>
- <target name="j3dSrc" depends="j3dSrcClean">
+ <target name="j3dSrc">
<zip destfile="${j3dZipFile}">
<fileset dir="${cvsRootDir}/j3d-core/release-info/src-release/j3d"
@@ -738,7 +738,7 @@
</zip>
</target>
- <target name="vecmathSrc" depends="vecmathSrcClean">
+ <target name="vecmathSrc">
<zip destfile="${vecmathZipFile}">
<fileset dir="${cvsRootDir}/j3d-core/release-info/src-release/vecmath"
@@ -753,14 +753,6 @@
</zip>
</target>
- <target name="j3dSrcClean" depends="initSrc">
- <delete file="${j3dZipFile}"/>
- </target>
-
- <target name="vecmathSrcClean" depends="initSrc">
- <delete file="${vecmathZipFile}"/>
- </target>
-
<target name="clean-dist">
<!-- Delete the ${dist} directory tree -->
<delete dir="${dist}"/>