monsieurp 15/06/27 18:15:35 Added: jython-2.7.0-build.xml.patch Log: Patch to set failonerror to false when running antlr target. Signed-off-by: Patrice Clement <[email protected]> (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
Revision Changes Path 1.1 dev-java/jython/files/jython-2.7.0-build.xml.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jython/files/jython-2.7.0-build.xml.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jython/files/jython-2.7.0-build.xml.patch?rev=1.1&content-type=text/plain Index: jython-2.7.0-build.xml.patch =================================================================== --- build.xml.orig 2015-06-27 16:12:08.442000000 +0000 +++ build.xml 2015-06-27 16:12:15.684000000 +0000 @@ -448,7 +448,7 @@ </target> <target name="antlr_gen" depends="prepare-output" unless="antlr.notneeded"> - <java classname="org.antlr.Tool" failonerror="true" fork="true" dir="${jython.base.dir}"> + <java classname="org.antlr.Tool" failonerror="false" fork="true" dir="${jython.base.dir}"> <jvmarg value="-Xmx512m"/> <arg value="-Xconversiontimeout"/> <arg value="2000"/>
