Bug - Fixed build.xml:147 error

This just started happening relatively recently when compiling.

[javac] kolmafia/build.xml:147: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
 

Winterbay

Active member
Someone gas forgot to include ants in the process? I guess that could be a problem :)
On a more serious note, I have no idea...
 

Veracity

Developer
Staff member
Yes. You just installed Java for Mac OS X 10.6 Update 3. So did I, and that warning started appearing when I compile. Near as I can tell, everything works fine.

I could probably figure out how to make the warning go away, but it would be "annoying" if that broke the build for other platforms...

Edit: Yes, the warning says exactly what to do. Change:

Code:
		       nowarn="on">
to
Code:
		       nowarn="on" includeantruntime="false">
If Linux and/or Windows users want to try this, I'd be grateful.

Thanks.
 
Last edited:

Theraze

Active member
I've had that error since I started compiling KoLmafia a few months back and just figured that was a 'feature' of the system. Confirming that it fixes Windows as well.
 

Veracity

Developer
Staff member
OK, Thanks. Apparently, something changed in the java compiler - or ant - and it took a while for Apple to catch up to the new version.
Revision 8715
 
Top