aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorkbr <[email protected]>2006-08-27 11:30:49 +0000
committerkbr <[email protected]>2006-08-27 11:30:49 +0000
commitb0ee098ccf8cb5e348f71bc01713616477f1ae9c (patch)
tree61965862990ea300523a31b1360cf44ba663a8e6 /make
parent15c4f0ac1d74629e6dd14bef8daf83a05b95f301 (diff)
Fixed problem with dist target; tested with real nightly build output
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@275 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'make')
-rwxr-xr-xmake/build.xml26
1 files changed, 13 insertions, 13 deletions
diff --git a/make/build.xml b/make/build.xml
index ff53d7b..f7acdee 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -598,20 +598,20 @@
<delete>
<fileset dir="${joal.dist.dir}" includes="joal-natives-*.jar" />
</delete>
- <copy todir="${joal.dist.dir}">
- <fileset dir="${joal.dist.dir}">
- <include name="joal-win/32/*.jar" />
- <include name="joal-linux/32/*.jar" />
- <include name="joal-macosx/ppc/*.jar" />
- <include name="joal-macosx/fat/*.jar" />
- <!-- NOTE: No OpenAL for Windows/AMD64, Linux/AMD64 or Solaris at the moment -->
- <!-- include name="joal-win/64/*.jar" / -->
- <!-- include name="joal-linux/64/*.jar" / -->
- <!-- include name="joal-solsparc/32/*.jar" / -->
- <!-- include name="joal-solsparc/64/*.jar" / -->
- <!-- include name="joal-solx86/32/*.jar" / -->
- <!-- include name="joal-solx86/64/*.jar" / -->
+ <copy todir="${joal.dist.dir}">
+ <fileset dir="${joal.dist.dir}/joal-win/32">
+ <include name="*.jar" />
</fileset>
+ <fileset dir="${joal.dist.dir}/joal-linux/32">
+ <include name="*.jar" />
+ </fileset>
+ <fileset dir="${joal.dist.dir}/joal-macosx/ppc">
+ <include name="*.jar" />
+ </fileset>
+ <fileset dir="${joal.dist.dir}/joal-macosx/fat">
+ <include name="*.jar" />
+ </fileset>
+ <!-- NOTE: No OpenAL for Windows/AMD64, Linux/AMD64 or Solaris at the moment -->
</copy>
<!-- Build a source archive as well -->
<zip destfile="${joal.dist.dir}/joal-src.zip"