File: 01_build_target_5_0.patch

package info (click to toggle)
trove3 3.0.3-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,924 kB
  • sloc: java: 16,429; xml: 331; makefile: 21; sh: 10
file content (47 lines) | stat: -rw-r--r-- 1,925 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
From: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Date: Mon, 29 Oct 2018 19:57:12 +0100
Subject: _build_target_5_0

===================================================================
---
 build.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/build.xml b/build.xml
index db1ff1d..e85f287 100644
--- a/build.xml
+++ b/build.xml
@@ -109,7 +109,7 @@
     <target name="compile" depends="generate">
         <javac destdir="${output.dest}"
             classpath="${lib}/junit.jar"
-            debug="${debug}" target="1.5">
+            debug="${debug}" source="1.5" target="1.5">
 
             <src path="${src}"/>
             <src path="${output.generated}"/>
@@ -128,7 +128,7 @@
                 <exclude name="gnu/trove/generate/**"/>
             </fileset>
             <manifest>
-                <attribute name="Built-By" value="${user.name}"/>
+                <attribute name="Built-By" value="Debian GNU/Linux"/>
                 <attribute name="Implementation-Title" value="${Name}"/>
                 <attribute name="Implementation-Version" value="${version}"/>
                 <attribute name="Implementation-URL" value="http://trove4j.sourceforge.net/"/>
@@ -348,7 +348,7 @@
     <!-- =================================================================== -->
     
     <target name="-build_tests" depends="-init">
-        <javac destdir="${output.tests}" debug="${debug}" target="1.5">
+        <javac destdir="${output.tests}" debug="${debug}" source="1.5" target="1.5">
             <src path="${test_src}"/>
             <exclude name="gnu/trove/benchmark/colt/**"/>
             <exclude name="gnu/trove/benchmark/trove2/**"/>
@@ -442,4 +442,4 @@
             <format property="fullVersion" pattern="'build time' yyMMddHHmmss"/>
         </tstamp>
     </target>
-</project>
\ No newline at end of file
+</project>