Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Aug 2001 23:33:25 +0900
From:      SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= <sugimura@YasudaKei.org>
To:        freebsd-java@FreeBSD.ORG
Subject:   Re: 1.3.1 patchset 3 (early adopters)
Message-ID:  <20010822233325O.sugimura@YasudaKei.org>
In-Reply-To: <20010822130404.B22059@c104187.upc-c.chello.nl>
References:  <20010821221746.D24127@snark.ptc.spbu.ru> <20010822112358.A21815@c104187.upc-c.chello.nl> <20010822130404.B22059@c104187.upc-c.chello.nl>

next in thread | previous in thread | raw e-mail | index | archive | help
Thanks for Greg, I can also make and install jdk-1.3.1p3.

kei % /usr/local/jdk1.3.1/bin/java -version
java version "1.3.1-internal"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-internal-root-010822-09:09)
Classic VM (build 1.3.1-internal-root-010822-09:09, green threads, nojit)

I can also execute Tomcat, it works fine.
I will test it for Japanese environments.


>   zaphod# make install
>   ===>  Installing for jdk-1.3.1p3
>   ===>   jdk-1.3.1p3 depends on executable: javavm - found
> 
>   Please use `make -DNODEBUG' if you don't want to install libraries and binaries with debugging support.
> 
>   /bin/mkdir -p /usr/local/jdk1.3.1
>   (cd /usr/ports/java/jdk13/work/j2sdk1.3.1/make/../build/bsd-i386/jdk-image-i386 && gtar -c -f - .)  | (cd /usr/local/jdk1.3.1 && gtar --unlink -x -f -)
>   (cd /usr/ports/java/jdk13/work/j2sdk1.3.1/make/../build/bsd-i386/jdk-debug-image-i386 && gtar -c -f - .)  | (cd /usr/local/jdk1.3.1 && gtar --unlink -x -f -)
>   gtar: ./jre/: Cannot unlink: Directory not empty
>   gtar: ./jre/lib/: Cannot unlink: Directory not empty
>   gtar: ./jre/lib/i386/: Cannot unlink: Directory not empty
>   gtar: ./jre/lib/i386/green_threads/: Cannot unlink: Directory not empty
>   gtar: ./jre/lib/i386/classic/: Cannot unlink: Directory not empty
>   gtar: ./bin/: Cannot unlink: Directory not empty
>   gtar: ./bin/i386/: Cannot unlink: Directory not empty
>   gtar: ./bin/i386/green_threads/: Cannot unlink: Directory not empty
>   gtar: ./lib/: Cannot unlink: Directory not empty
>   gtar: ./lib/i386/: Cannot unlink: Directory not empty
>   gtar: Error exit delayed from previous errors
>   *** Error code 2
> 
>   Stop in /usr/ports/java/jdk13.
>   *** Error code 1
> 
>   Stop in /usr/ports/java/jdk13.
>   *** Error code 1
> 
>   Stop in /usr/ports/java/jdk13.
>
>Any suggestions?
>

I have changed this Makefile as follows:

--- Makefile.orig	Wed Aug 22 23:29:03 2001
+++ Makefile	Wed Aug 22 23:23:57 2001
@@ -78,10 +78,10 @@
 do-install:
 	${MKDIR} ${PREFIX}/jdk${JDK_VERSION}
 	(cd ${JDKIMAGEDIR} && ${TAR} -c -f - .) \
-		| (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} --unlink -x -f -)
+		| (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} -x -f -)
 .if !defined(NODEBUG)
 	(cd ${JDKIMAGEDIR_G} && ${TAR} -c -f - .) \
-		| (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} --unlink -x -f -)
+		| (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} -x -f -)
 .endif
 
 post-install:


Regards,

---
SUGIMURA Takashi <sugimura@jp.FreeBSD.org>

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-java" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010822233325O.sugimura>