diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2020-03-18 03:26:53 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2020-03-18 03:26:53 +0000 |
commit | db8af146817f503e2ad82e399c06e2813e174f2c (patch) | |
tree | 91b32fdf3328b26e60da71aca7f8896d009ea0fd /java | |
parent | Update to the recent commit. (diff) |
Allow an already installed openjdk13 to be used as a bootstrap
Notes
Notes:
svn path=/head/; revision=528625
Diffstat (limited to 'java')
-rw-r--r-- | java/openjdk13/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/openjdk13/Makefile b/java/openjdk13/Makefile index 3262adf07907..22863516302d 100644 --- a/java/openjdk13/Makefile +++ b/java/openjdk13/Makefile @@ -98,7 +98,8 @@ JDK_BUILD_TYPE= release ONLY_FOR_ARCHS+=aarch64 .endif -BOOTSTRAP_JDKS= ${LOCALBASE}/openjdk12 +BOOTSTRAP_JDKS= ${LOCALBASE}/openjdk13 \ + ${LOCALBASE}/openjdk12 # do we have valid native jdk installed? .for BJDK in ${BOOTSTRAP_JDKS} |