4d39955866
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/ecj#ef955216db8cb9dfeefff82784af27d16a9afb5f
27 lines
911 B
Diff
27 lines
911 B
Diff
--- build.xml.orig 2018-03-20 15:15:57.063810672 +0000
|
|
+++ build.xml 2018-03-20 15:16:26.018700633 +0000
|
|
@@ -18,16 +18,20 @@
|
|
<property name="output" value="bin" />
|
|
<property name="jar_file" value="ecj.jar" />
|
|
|
|
+ <path id="build.path">
|
|
+ <pathelement path="${javaapi}"/>
|
|
+ <pathelement path="/usr/lib/jvm/java-1.8.0/jre/lib/rt.jar"/>
|
|
+ </path>
|
|
<target name="build">
|
|
<delete file="${basedir}/${jar_file}" failonerror="no" />
|
|
<delete dir="${output}" failonerror="no" />
|
|
<mkdir dir="${output}" />
|
|
|
|
- <javac srcdir="${basedir}" destdir="${output}"
|
|
- debuglevel="lines,source"
|
|
+ <javac srcdir="${basedir}" destdir="${output}" bootclasspathref="build.path"
|
|
+ debug="yes"
|
|
source="1.8"
|
|
target="1.8">
|
|
- <compilerarg line="-Xlint:none"/>
|
|
+ <compilerarg line="-Xlint:none -encoding cp1252"/>
|
|
</javac>
|
|
|
|
<delete file="${basedir}/META-INF/MANIFEST.MF" failonerror="false"/>
|