aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-02-23 04:50:35 +0100
committerSven Gothel <[email protected]>2011-02-23 04:50:35 +0100
commit71c4b0d599ce881c5fcda137b78c39e70f48c0ca (patch)
tree4e5969035c12740dd853012fbf995fba4504f288 /make
parentd7be09cda445a874c5f76f3121f2dbd787889c96 (diff)
Use 7z instead of zip
Diffstat (limited to 'make')
-rw-r--r--make/build-test.xml8
-rwxr-xr-xmake/build.xml10
2 files changed, 9 insertions, 9 deletions
diff --git a/make/build-test.xml b/make/build-test.xml
index 88fdf0a..76973c5 100644
--- a/make/build-test.xml
+++ b/make/build-test.xml
@@ -72,7 +72,7 @@
<!-- Clean the results -->
<delete quiet="true">
<fileset dir="${results.test}" includes="**"/>
- <fileset file="${build}/${test.archive.name}.zip"/>
+ <fileset file="${build}/${test.archive.name}.7z"/>
</delete>
<mkdir dir="${results.test}"/>
@@ -165,9 +165,9 @@
<!-- updates / create the test results zip file -->
<target name="test-zip-archive" depends="declare.common">
- <zip destfile="${build}/${test.archive.name}.zip" update="true">
- <zipfileset dir="${results.test}" prefix="${archive.name}/test-results"/>
- </zip>
+ <archive.7z destfile="${build}/${test.archive.name}.7z"
+ basedir="${results.test}"
+ includes="**" />
</target>
</project>
diff --git a/make/build.xml b/make/build.xml
index db092e2..3d08fb5 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -59,6 +59,7 @@
<!-- Pull in GlueGen cpptasks build file -->
<import file="${gluegen.root}/make/gluegen-cpptasks.xml" />
+ <import file="${gluegen.root}/make/gluegen-archivetasks.xml" />
<!-- ================================================================== -->
<!--
@@ -463,9 +464,9 @@
</target>
<target name="javadoc.zip" depends="javadoc.init">
- <zip destfile="${build}/javadoc.zip"
- basedir="${javadoc.root.path}"
- includes="joal/**" />
+ <archive.7z destfile="${build}/javadoc.7z"
+ basedir="${javadoc.root.path}"
+ includes="joal/**" />
</target>
<target name="javadoc.public" depends="javadoc.init">
@@ -515,8 +516,7 @@
</copy>
<copy file="../README.txt" todir="${archive}"/>
<copy file="../LICENSE.txt" todir="${archive}"/>
- <delete quiet="true" file="${build}/${archive.name}.zip"/>
- <zip destfile="${build}/${archive.name}.zip"
+ <archive.7z destfile="${build}/${archive.name}.7z"
basedir="${build}"
includes="${archive.name}/**" />
<!-- Clean up after ourselves -->