summaryrefslogtreecommitdiff
path: root/java/linux-blackdown-jdk12/files/patch-aa
diff options
context:
space:
mode:
authorErnst de Haan <znerd@FreeBSD.org>2002-04-15 21:18:18 +0000
committerErnst de Haan <znerd@FreeBSD.org>2002-04-15 21:18:18 +0000
commit1d2f329fe2039f32eecaaa4bb5b41b179603d97c (patch)
tree5dabafdf04ef40f9cc34e77693b1acc1108fec70 /java/linux-blackdown-jdk12/files/patch-aa
parentRecognise EXTRA_PATCHES. (diff)
Re-adding patches to make scripts use the linux expr
and to use green iso linux threads by default. These patches were removed by me when I upgraded the port to FCS, but they should have been ported to this version of the port. Bumped PORTREVISION. Submitted by: glewis
Notes
Notes: svn path=/head/; revision=57734
Diffstat (limited to 'java/linux-blackdown-jdk12/files/patch-aa')
-rw-r--r--java/linux-blackdown-jdk12/files/patch-aa22
1 files changed, 22 insertions, 0 deletions
diff --git a/java/linux-blackdown-jdk12/files/patch-aa b/java/linux-blackdown-jdk12/files/patch-aa
new file mode 100644
index 000000000000..9f6c6b8dd4bb
--- /dev/null
+++ b/java/linux-blackdown-jdk12/files/patch-aa
@@ -0,0 +1,22 @@
+--- bin/.java_wrapper.orig Fri Apr 12 17:03:39 2002
++++ bin/.java_wrapper Fri Apr 12 17:04:00 2002
+@@ -32,8 +32,8 @@
+ # Resolve symlinks. See 4152645.
+ while [ -L "$PRG" ]; do
+ ls=`ls -ld "$PRG"`
+- link=`expr "$ls" : '.*-> \(.*\)$'`
+- if expr "$link" : '/' > /dev/null; then
++ link=`/compat/linux/usr/bin/expr "$ls" : '.*-> \(.*\)$'`
++ if /compat/linux/usr/bin/expr "$link" : '/' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname $PRG`/$link"
+@@ -65,7 +65,7 @@
+ # Select vm type (if classic vm, also select thread type).
+ unset vmtype
+ unset ttype
+-DEFAULT_THREADS_FLAG=native
++DEFAULT_THREADS_FLAG=green
+ if [ "x$1" = "x-hotspot" ]; then
+ vmtype=hotspot
+ ttype=native_threads