In the last day or so it seems we have had to do a 'clean' to get a successful build. Looking into it I see that we were picking up the build.output dir in our 'global' build javac (see below), which likely means that the new source files are compiled against the old .class files in some order.
I see no reason why we should use the previous build.output binaries if we are rebuilding all, so I've taken that line out. Tell me if I'm smokin' something here (but the build still works for me). I think it is the cause of the problems. Regards, Tim [EMAIL PROTECTED] wrote: > Author: tellison > Date: Fri Oct 20 09:53:49 2006 > New Revision: 466199 > > URL: http://svn.apache.org/viewvc?view=rev&rev=466199 > Log: > Global compile should not pick up older class files from the classpath, but > rely on the latest versions from source. > > Modified: > incubator/harmony/enhanced/classlib/trunk/make/build-java.xml > > Modified: incubator/harmony/enhanced/classlib/trunk/make/build-java.xml > URL: > http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/build-java.xml?view=diff&rev=466199&r1=466198&r2=466199 > ============================================================================== > --- incubator/harmony/enhanced/classlib/trunk/make/build-java.xml (original) > +++ incubator/harmony/enhanced/classlib/trunk/make/build-java.xml Fri Oct 20 > 09:53:49 2006 > @@ -179,7 +179,7 @@ > <src path="modules/swing/src/main/java/common" /> > <src path="modules/text/src/main/java" /> > <src path="modules/x-net/src/main/java/" /> > - <classpath location="${build.output}" /> > + > <classpath> > <fileset dir="${depends.jars}"> > <include name="**/*.jar" /> > > > -- Tim Ellison ([EMAIL PROTECTED]) --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
