4d23be3ad3
- Remove Early Access now that jdk 1.7 is final - Use a patch set for all patches from upstream repository: http://hg.openjdk.java.net/bsd-port/bsd-port - Set milestone and build number to fcs b00 to match Oracle. - Update cacerts file. - Install unlimited crypto policy. - Add DIST_SUBDIR=jdk. - Include patches from icedtea-web for applet hole from Landry Breuil <landry@openbsd.org> via FreeBSD OpenJDK7 port - Include fix for Oracle bug "7070134: Hotspot crashes with sigsegv from PorterStemmer": http://hg.openjdk.java.net/hsx/hotspot-comp/hotspot/rev/4e761e7e6e12 okay landry@ jasper@
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
$OpenBSD: patch-langtools_make_build_xml,v 1.4 2011/09/22 20:26:49 kurt Exp $
|
|
--- langtools/make/build.xml.orig Tue Sep 6 18:23:40 2011
|
|
+++ langtools/make/build.xml Wed Sep 7 09:44:08 2011
|
|
@@ -235,7 +235,8 @@
|
|
</chmod>
|
|
<mkdir dir="${dist.lib.dir}"/>
|
|
<jar file="${dist.lib.dir}/classes.jar" basedir="${build.classes.dir}"/>
|
|
- <zip file="${dist.lib.dir}/src.zip" basedir="${src.classes.dir}"/>
|
|
+ <zip file="${dist.lib.dir}/src.zip" basedir="${src.classes.dir}"
|
|
+ excludes="**/*.orig"/>
|
|
</target>
|
|
|
|
<target name="build-bootstrap-tools"
|
|
@@ -804,6 +805,7 @@
|
|
<copy todir="@{classes.dir}" includeemptydirs="false">
|
|
<fileset dir="${src.classes.dir}" includes="@{includes}" excludes="@{excludes}">
|
|
<exclude name="**/*.java"/>
|
|
+ <exclude name="**/*.orig"/>
|
|
<exclude name="**/*.properties"/>
|
|
<exclude name="**/*-template"/>
|
|
<exclude name="**/*.rej"/>
|