File jakarta-commons-lang-build.patch of Package jakarta-commons-lang
--- commons-lang-2.4-src/build.xml.p0 2008-01-15 18:56:47.000000000 -0500
+++ commons-lang-2.4-src/build.xml 2009-03-18 14:57:26.425150740 -0400
@@ -62,7 +62,7 @@
</copy>
</target>
<target name="compile" depends="static" description="Compile shareable components">
- <javac srcdir="${source.home}" destdir="${build.home}/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" target="${compile.target}" source="${compile.source}" excludes="${compile.excludes}" optimize="${compile.optimize}">
+ <javac encoding="8859_1" srcdir="${source.home}" destdir="${build.home}/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" source="${compile.source}" excludes="${compile.excludes}" optimize="${compile.optimize}">
<classpath refid="compile.classpath"/>
</javac>
<copy todir="${build.home}/classes" filtering="on">
@@ -70,7 +70,7 @@
</copy>
</target>
<target name="compile.tests" depends="compile" description="Compile unit test cases">
- <javac srcdir="${test.home}" destdir="${build.home}/tests" debug="${compile.debug}" deprecation="off" target="${compile.target}" source="${compile.source}" optimize="${compile.optimize}">
+ <javac encoding="8859_1" srcdir="${test.home}" destdir="${build.home}/tests" debug="${compile.debug}" deprecation="off" source="${compile.source}" optimize="${compile.optimize}">
<classpath refid="test.classpath"/>
</javac>
<copy todir="${build.home}/tests" filtering="on">
@@ -89,7 +89,7 @@
<tstamp>
<format property="current.year" pattern="yyyy"/>
</tstamp>
- <javadoc sourcepath="${source.home}" destdir="${dist.home}/docs/api" overview="${source.home}/org/apache/commons/lang/overview.html" packagenames="org.apache.commons.*" excludepackagenames="${javadoc.excludepackagenames}" author="true" version="true" doctitle="<h1>${component.title}</h1>" windowtitle="${component.title} (Version ${component.version})" bottom="Copyright &copy; 2001-${current.year} - Apache Software Foundation" use="true" link="${jdk.javadoc}" source="${compile.source}">
+ <javadoc encoding="8859_1" sourcepath="${source.home}" destdir="${dist.home}/docs/api" overview="${source.home}/org/apache/commons/lang/overview.html" packagenames="org.apache.commons.*" excludepackagenames="${javadoc.excludepackagenames}" author="true" version="true" doctitle="<h1>${component.title}</h1>" windowtitle="${component.title} (Version ${component.version})" bottom="Copyright &copy; 2001-${current.year} - Apache Software Foundation" use="true" link="${jdk.javadoc}" source="${compile.source}">
<classpath refid="compile.classpath"/>
</javadoc>
</target>
@@ -121,7 +121,7 @@
<delete file="${final.name}.tar"/>
<fixcrlf srcdir="${final.name}" eol="crlf" includes="**/*.txt"/>
<zip destfile="${final.name}.zip" basedir="${final.name}"/>
- <delete dir="${final.name}"/>
+ <!-- <delete dir="${final.name}"/> -->
</target>
<target name="jar" depends="compile" description="Create jar">
<mkdir dir="${dist.home}"/>