diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-02-06 17:03:09 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-02-06 17:03:09 +0000 |
commit | 2f5df15115f7feef045136afefce5919f466e4c7 (patch) | |
tree | e9e44b2b8ab77eebb1939d2a684071bf53935807 /java/jdk13 | |
parent | Apply studly caps to "FreeBSD". (diff) |
. It appears as though diablo is problematic on 5.x still, so default to
bootstrapping with the Linux JDK if there isn't a previously compiled
native one.
Notes
Notes:
svn path=/head/; revision=100161
Diffstat (limited to 'java/jdk13')
-rw-r--r-- | java/jdk13/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/jdk13/Makefile b/java/jdk13/Makefile index 6cf420b081a0..add4f85f62b6 100644 --- a/java/jdk13/Makefile +++ b/java/jdk13/Makefile @@ -111,6 +111,10 @@ LD_LIBRARY_PATH_FILES= ../src/solaris/javavm/runtime/javai_md.c \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500000 && !exists(${PREFIX}/jdk${JDK_VERSION}/bin/javac) +WITH_LINUX_BOOTSTRAP=yes +.endif + .if !defined(JDK13DIR) .if defined(WITH_LINUX_BOOTSTRAP) JDK13DIR= ${LOCALBASE}/linux-blackdown-jdk${JDK_VERSION} |