From: <otm...@us...> - 2008-12-06 22:20:10
|
Revision: 5717 http://jython.svn.sourceforge.net/jython/?rev=5717&view=rev Author: otmarhumbel Date: 2008-12-06 22:14:43 +0000 (Sat, 06 Dec 2008) Log Message: ----------- javac ignores the optimize option, according to http://ant.apache.org/manual/ Modified Paths: -------------- trunk/jython/build.xml Modified: trunk/jython/build.xml =================================================================== --- trunk/jython/build.xml 2008-12-06 21:44:53 UTC (rev 5716) +++ trunk/jython/build.xml 2008-12-06 22:14:43 UTC (rev 5717) @@ -58,7 +58,6 @@ #build.compiler=modern #jdk.target.version=1.5 #debug=false -#optimize=off #deprecation=off # - the svn main directory to build from; only needed for full-build @@ -418,7 +417,6 @@ target="${jdk.target.version}" source="${jdk.source.version}" debug="${debug}" - optimize="${optimize}" deprecation="${deprecation}" nowarn="${nowarn}"> <include name="org/python/util/TemplateAntTask.java" /> @@ -476,7 +474,6 @@ target="${jdk.target.version}" source="${jdk.source.version}" debug="${debug}" - optimize="${optimize}" deprecation="${deprecation}" nowarn="${nowarn}"/> @@ -486,7 +483,6 @@ target="${jdk.target.version}" source="${jdk.source.version}" debug="${debug}" - optimize="${optimize}" deprecation="${deprecation}" nowarn="${nowarn}"> <classpath refid="test.classpath" /> @@ -555,7 +551,6 @@ <attribute name="build-compiler" value="${build.compiler}" /> <attribute name="jdk-target-version" value="${jdk.target.version}" /> <attribute name="debug" value="${debug}" /> - <attribute name="optimize" value="${optimize}" /> </section> </manifest> </jar> @@ -588,7 +583,6 @@ <attribute name="build-compiler" value="${build.compiler}" /> <attribute name="jdk-target-version" value="${jdk.target.version}" /> <attribute name="debug" value="${debug}" /> - <attribute name="optimize" value="${optimize}" /> </section> </manifest> </jar> @@ -718,7 +712,6 @@ target="${jdk.target.version}" source="${jdk.source.version}" debug="${debug}" - optimize="${optimize}" deprecation="${deprecation}" nowarn="${nowarn}" /> @@ -757,7 +750,6 @@ <attribute name="build-compiler" value="${build.compiler}" /> <attribute name="jdk-target-version" value="${jdk.target.version}" /> <attribute name="debug" value="${debug}" /> - <attribute name="optimize" value="${optimize}" /> </section> </manifest> </jar> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |