diff options
author | scgilardi <scgilardi@gmail.com> | 2008-08-16 23:27:25 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2008-08-16 23:27:25 +0000 |
commit | 543451eec93c16bea1988ceccd513cdf6b7a599b (patch) | |
tree | 5a50d1a7f86625f4fd411ee923746cf343e31f1f | |
parent | 881815127c98c4c38d8f78a0fd3cd5e1ab72b1af (diff) |
fix build.xml for the new clojure-contrib layout
-rw-r--r-- | build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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> |