svn commit: r506858 - head/databases/hbase
Greg Lewis
glewis at FreeBSD.org
Thu Jul 18 16:36:35 UTC 2019
Author: glewis
Date: Thu Jul 18 16:36:35 2019
New Revision: 506858
URL: https://svnweb.freebsd.org/changeset/ports/506858
Log:
Adjust to proposed changes in Java versioning
* Bug #238758 proposes to change the Java versioning from versions such
as "1.6.0" to versions such as "6" (for example). Modify the Makefile
checks on JAVA_PORT_VERSION to cope with either format.
PR: 238983
Approved by: maintainer timeout
Modified:
head/databases/hbase/Makefile
Modified: head/databases/hbase/Makefile
==============================================================================
--- head/databases/hbase/Makefile Thu Jul 18 16:28:45 2019 (r506857)
+++ head/databases/hbase/Makefile Thu Jul 18 16:36:35 2019 (r506858)
@@ -55,7 +55,7 @@ PLIST_SUB= HBASE_USER=${HBASE_USER} \
.include <bsd.port.pre.mk>
-.if ${JAVA_PORT_VERSION:M1.8.*}
+.if ${JAVA_PORT_VERSION:M*8*}
JDK18_PROFILE= ,build-with-jdk8
JDK18_SOURCE= -DcompileSource=1.8
.endif
More information about the svn-ports-all
mailing list