diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-06-01 15:28:29 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-06-01 15:28:29 +0000 |
commit | b54ec812b0b9bb6f9e90a7202b3987c6bb8d47d0 (patch) | |
tree | aff3d9a7877cbe038e3b0ca8dbe7983c90cb315d /java/linux-sun-jdk13/files/patch-ab | |
parent | Bump PORTREVISION for the ip->ip_id byte order patch. (diff) |
Backout my last backout.
Requested by: eivind
Notes
Notes:
svn path=/head/; revision=43398
Diffstat (limited to 'java/linux-sun-jdk13/files/patch-ab')
-rw-r--r-- | java/linux-sun-jdk13/files/patch-ab | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/java/linux-sun-jdk13/files/patch-ab b/java/linux-sun-jdk13/files/patch-ab index cf51b6a54d01..484f62cdff09 100644 --- a/java/linux-sun-jdk13/files/patch-ab +++ b/java/linux-sun-jdk13/files/patch-ab @@ -1,13 +1,13 @@ ---- jre/bin/.java_wrapper.orig Tue Dec 5 15:25:11 2000 -+++ jre/bin/.java_wrapper Tue Dec 5 15:25:29 2000 -@@ -31,8 +31,8 @@ +--- jre/bin/.java_wrapper.orig Fri May 25 14:39:58 2001 ++++ jre/bin/.java_wrapper Fri May 25 14:42:25 2001 +@@ -34,8 +34,8 @@ # Resolve symlinks. See 4152645. while [ -L "$PRG" ]; do - ls=`/bin/ls -ld "$PRG"` -- link=`/usr/bin/expr "$ls" : '.*-> \(.*\)$'` -- if /usr/bin/expr "$link" : '/' > /dev/null; then + 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="`/usr/bin/dirname $PRG`/$link" + PRG="`dirname $PRG`/$link" |