File groovy-1.6.5-build.patch of Package groovy
This fixes build on openSUSE 11.2
ant seems to produce incorrect parameter list to javac.
[groovyc] org.codehaus.groovy.control.MultipleCompilationErrorsException:
startup failed, deprecation: deprecation (No such file or directory)
diff -up groovy-1.6.5/build.xml.japierdole groovy-1.6.5/build.xml
--- groovy-1.6.5/build.xml.japierdole 2009-11-16 10:14:52.336014552 +0100
+++ groovy-1.6.5/build.xml 2009-11-16 10:17:19.785011792 +0100
@@ -190,7 +190,8 @@ $Date: 2009-09-12 02:39:39 +0200 (Sa, 12
<pathelement path="${mainClassesDirectory}"/>
<path refid="compilePath"/>
</classpath>
- <javac deprecation="on" debug="yes" source="1.5" target="1.5"/>
+ <!-- javac deprecation="on" debug="yes" source="1.5" target="1.5"/-->
+ <javac debug="yes"/>
</groovyc>
</target>