From owner-freebsd-java Tue Dec 22 08:12:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09445 for freebsd-java-outgoing; Tue, 22 Dec 1998 08:12:59 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09440 for ; Tue, 22 Dec 1998 08:12:57 -0800 (PST) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id JAA02535 for ; Tue, 22 Dec 1998 09:12:54 -0700 (MST) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id JAA06204; Tue, 22 Dec 1998 09:12:53 -0700 Date: Tue, 22 Dec 1998 09:12:53 -0700 Message-Id: <199812221612.JAA06204@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: freebsd-java@FreeBSD.ORG Subject: Patch to JDK1.1.7.V98-12-21 X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I screwed up the appletviewer when I merged in the Sun sources. Unfortunately, I don't have time to re-roll the release as I'm leaving in about an hour to my parents, so below you'll find the a patch for the file jdk1.1.7/bin/i386/green_threads/appletviewer. If someone who has commit privs' can fixup the JDK port to do the right thing I'd appreciate it! Thanks, and sorry about that! Nate ---------------- Index: appletviewer.sh =================================================================== RCS file: /data/java/CVS/javasrc/src/freebsd/bin/appletviewer.sh,v retrieving revision 1.5 diff -u -r1.5 appletviewer.sh --- appletviewer.sh 1998/11/07 00:16:47 1.5 +++ appletviewer.sh 1998/12/22 16:09:04 @@ -36,6 +36,7 @@ # # Run the applet viewer. We hardwire the debugger's class -- oh, well. # +curdir=`dirname $0` if test "$debugging" = "true" then if [ -x $curdir/java_g_X ]; then @@ -43,7 +44,7 @@ else prog=java_g fi - `dirname $0`/$prog $RUNTIME_ARGS sun.tools.ttydebug.TTY \ + $curdir/$prog $RUNTIME_ARGS sun.tools.ttydebug.TTY \ sun.applet.AppletViewer ${args} else if [ -x $curdir/java_X ]; then @@ -51,5 +52,5 @@ else prog=java fi - `dirname $0`/$prog $RUNTIME_ARGS sun.applet.AppletViewer ${args} + $curdir/$prog $RUNTIME_ARGS sun.applet.AppletViewer ${args} fi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message