Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Jul 2019 16:36:35 +0000 (UTC)
From:      Greg Lewis <glewis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r506858 - head/databases/hbase
Message-ID:  <201907181636.x6IGaZes048113@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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