On Nov 25, 11:46 am, Perry Trolard <[EMAIL PROTECTED]> wrote: > Yeah, I thought of the same, but when I dump the results of > System.getProperty("java.class.path"), my classes directory doesn't > show up -- running under the Ant task, on my machine, at least. It > would if passed as an arg to java -cp, but the Ant is the first case > where Compile's got to work.
Is the classpath set up in the <java> Ant task? It should look something like this: Near the top: <property name="build" location="classes"/> In the compile_clojure task: <java classname="clojure.lang.Compile" classpath="${build}:${cljsrc}"> <sysproperty key="clojure.compile.path" value="${build}"/> <arg value="clojure.core"/> ...and so on... There have been so many patches on this, I'm not sure which one you have. -S --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---