aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscgilardi <scgilardi@gmail.com>2008-08-16 23:27:25 +0000
committerscgilardi <scgilardi@gmail.com>2008-08-16 23:27:25 +0000
commit543451eec93c16bea1988ceccd513cdf6b7a599b (patch)
tree5a50d1a7f86625f4fd411ee923746cf343e31f1f
parent881815127c98c4c38d8f78a0fd3cd5e1ab72b1af (diff)
fix build.xml for the new clojure-contrib layout
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index 2f4f1db5..eb12dcf5 100644
--- a/build.xml
+++ b/build.xml
@@ -12,7 +12,7 @@
<!-- The directory under dist.root that matches the
classpath "clojure.contrib". -->
- <property name="dist.path" location="${dist.root}/clojure/contrib"/>
+ <property name="dist.path" location="${dist.root}"/>
<target name="clean"
description="Remove generated files and directories.">
@@ -30,9 +30,9 @@
depends="clean,dirs">
<copy todir="${dist.path}">
<fileset dir="." includes="CPL.TXT"/>
- <fileset dir="." includes="**/*.clj"/>
+ <fileset dir="." includes="src/clojure/contrib/**/*.clj"/>
</copy>
- <jar jarfile="${jarfile}" basedir="${dist.root}"/>
+ <jar jarfile="${jarfile}" basedir="${dist.root}/src"/>
</target>
</project>