Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/java/eclipse-ecj/files/patch-build.xml
18160 views
1
--- build.xml.orig 2015-01-28 10:02:16 UTC
2
+++ build.xml
3
@@ -22,13 +22,12 @@
4
5
<javac srcdir="${basedir}" destdir="${output}"
6
debuglevel="lines,source"
7
+ encoding="UTF-8"
8
source="1.6"
9
target="1.6">
10
<compilerarg line="-Xlint:none"/>
11
</javac>
12
13
- <delete file="${basedir}/META-INF/MANIFEST.MF" failonerror="false"/>
14
- <copy tofile="${basedir}/META-INF/MANIFEST.MF" file="${basedir}/scripts/binary/META-INF/MANIFEST.MF"/>
15
<zip destfile="${basedir}/${jar_file}">
16
<fileset dir="${output}" />
17
<fileset dir="${basedir}">
18
@@ -43,4 +42,4 @@
19
</zip>
20
<delete dir="${output}" />
21
</target>
22
-</project>
23
\ No newline at end of file
24
+</project>
25
26