[pkg-java] r16341 - trunk/libcommons-compress-java/debian
Jakub Adam
xhaakon-guest at alioth.debian.org
Sat Oct 27 15:59:42 UTC 2012
Author: xhaakon-guest
Date: 2012-10-27 15:59:42 +0000 (Sat, 27 Oct 2012)
New Revision: 16341
Modified:
trunk/libcommons-compress-java/debian/build.xml
trunk/libcommons-compress-java/debian/changelog
Log:
Ensure backwards compatible bytecode is built (Closes: #688118)
Modified: trunk/libcommons-compress-java/debian/build.xml
===================================================================
--- trunk/libcommons-compress-java/debian/build.xml 2012-10-27 15:56:12 UTC (rev 16340)
+++ trunk/libcommons-compress-java/debian/build.xml 2012-10-27 15:59:42 UTC (rev 16341)
@@ -10,13 +10,13 @@
<target name="compile" description="o Compile the source files">
<mkdir dir="${class.dir}"/>
<javac srcdir="${source.dir}" destdir="${class.dir}"
- debug="true" source="1.5"/>
+ debug="true" source="1.5" target="1.5"/>
</target>
<target name="test-compile" description="o Compile the test source files" depends="compile">
<mkdir dir="${test.class.dir}"/>
<javac srcdir="${test.source.dir}" destdir="${test.class.dir}"
- debug="true" source="1.5" encoding="ISO-8859-1">
+ debug="true" source="1.5" target="1.5" encoding="ISO-8859-1">
<classpath>
<pathelement location="${class.dir}"/>
<pathelement path="${java.class.path}"/>
Modified: trunk/libcommons-compress-java/debian/changelog
===================================================================
--- trunk/libcommons-compress-java/debian/changelog 2012-10-27 15:56:12 UTC (rev 16340)
+++ trunk/libcommons-compress-java/debian/changelog 2012-10-27 15:59:42 UTC (rev 16341)
@@ -2,6 +2,7 @@
* Add xz.jar to manifest Class-Path.
- fixes lintian-reported warning missing-classpath.
+ * Ensure backwards compatible bytecode is built (Closes: #688118).
-- Jakub Adam <jakub.adam at ktknet.cz> Sat, 27 Oct 2012 15:57:18 +0200
More information about the pkg-java-commits
mailing list