mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 16:57:29 -07:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37969 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
50 lines
1.7 KiB
Diff
50 lines
1.7 KiB
Diff
diff --git a/build.xml b/build.xml
|
|
index 47a0f2a..47f8f2b 100644
|
|
--- a/build.xml
|
|
+++ b/build.xml
|
|
@@ -180,8 +180,6 @@
|
|
<target name="init-codegen" depends="debuggen,subst">
|
|
<javac destdir="${build.classes.dir}"
|
|
classpathref="codegen-classpath"
|
|
- source="${jvm.target.version}"
|
|
- target="${jvm.target.version}"
|
|
debug="true">
|
|
<src>
|
|
<pathelement location="${build.codegen.dir}" />
|
|
@@ -224,8 +222,6 @@
|
|
<target name="compile-common" depends="codegen">
|
|
<javac destdir="${build.classes.dir}"
|
|
classpathref="build-classpath"
|
|
- source="${jvm.target.version}"
|
|
- target="${jvm.target.version}"
|
|
debug="on">
|
|
<sourcepath>
|
|
<pathelement location="${build.codegen.dir}" />
|
|
@@ -246,8 +242,6 @@
|
|
<target name="compile-subst" depends="codegen">
|
|
<javac destdir="${build.classes.dir}"
|
|
classpathref="build-classpath"
|
|
- source="${jvm.target.version}"
|
|
- target="${jvm.target.version}"
|
|
debug="on">
|
|
<sourcepath>
|
|
<pathelement location="${build.codegen.dir}" />
|
|
@@ -262,8 +256,6 @@
|
|
<target name="compile-mgmt" depends="codegen" unless="no-mgmt">
|
|
<javac destdir="${build.classes.dir}"
|
|
classpathref="build-classpath"
|
|
- source="${jvm.target.version}"
|
|
- target="${jvm.target.version}"
|
|
debug="on">
|
|
<sourcepath>
|
|
<pathelement location="${java.src.dir}" />
|
|
@@ -318,8 +310,6 @@
|
|
<target name="compile-junit" depends="compile">
|
|
<javac destdir="${test.classes.dir}"
|
|
classpathref="test-classpath"
|
|
- source="${jvm.target.version}"
|
|
- target="${jvm.target.version}"
|
|
debug="on">
|
|
<sourcepath>
|
|
<pathelement location="${java.src.dir}" />
|