|
From: Charles R. <cr...@ri...> - 2002-02-22 02:45:14
|
The problem isn't on an update of the code, but on a clean install. If you've just checked out the code cleanly, you won't have TstampGMT compiled, so you can't compile anything with Ant. You have to pull off this trick of compiling that one class to get anywhere... Note that this isn't a problem if you say "ant clean compile" when you already have the code, because the class is there when ant starts and isn't deleted until the "clean" task runs. But if you run "ant clean" and then "ant compile", you're hosed. Should we put some kind of conditional in the ant script to check for the presence of the TstampGMT class and try to compile it on its own if it doesn't exist? Charlie Eric E. Allen wrote: >>java -classpath $ANT_HOME/lib/ant.jar:$CLASSPATH -d ~/school/comp312/sf/built ant/TstampGMT.java >> > > Here, you mean "javac", of course. > > FYI, I had no problems with this update, so I don't think anything is > broken. > > -- Eric > > > > _______________________________________________ > drjava-hackers mailing list > drj...@li... > https://lists.sourceforge.net/lists/listinfo/drjava-hackers > > . > > |