On Mon, Dec 15, 2008 at 7:33 PM, Rich Hickey <richhic...@gmail.com> wrote:
>
> When pulling new Clojure from SVN, please do:
>
> ant clean
> ant
>
> So you know you have a consistent build.

If the supported way to build Clojure is to clean before the build,
can we just have the init target depend on clean? Attached is the
trivial patch to do this.

Regards,

- J.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Index: build.xml
===================================================================
--- build.xml	(revision 1162)
+++ build.xml	(working copy)
@@ -11,7 +11,7 @@
   <property name="build" location="classes"/>
   <property name="clojure_jar" location="clojure.jar"/>
 
-  <target name="init">
+  <target name="init" depends="clean">
     <tstamp/>
     <mkdir dir="${build}"/>
   </target>

Reply via email to