In build.xml, the javac tasks all say:
<javac ... debuglevel="lines,var,source"
They should say:
<javac ... debuglevel="lines,vars,source"
"var" is not a valid value according to the man page for javac. Java 7's javac
will fail with this invalid parameter (it appears to be stricter than Java 6's
javac).
I'm attaching a patch which fixes this issue.
Original issue reported on code.google.com by candrews...@gmail.com on 10 Nov 2011 at 9:26
Original issue reported on code.google.com by
candrews...@gmail.com
on 10 Nov 2011 at 9:26