Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jul 2020 17:28:36 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r543812 - head/lang/bsh
Message-ID:  <202007301728.06UHSaHQ062166@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Thu Jul 30 17:28:36 2020
New Revision: 543812
URL: https://svnweb.freebsd.org/changeset/ports/543812

Log:
  lang/bsh: Use JDK 8 to build.
  
  The build breaks with JDK 9+. Upstream has fixed this in their development
  version but they haven't released a new version, so for nw require Java 8
  to build.
  
  Pet portlint while here.
  
  Reported by:	Tom Jones
  Approved by:	thierry (mentor, implicit)

Modified:
  head/lang/bsh/Makefile

Modified: head/lang/bsh/Makefile
==============================================================================
--- head/lang/bsh/Makefile	Thu Jul 30 17:28:35 2020	(r543811)
+++ head/lang/bsh/Makefile	Thu Jul 30 17:28:36 2020	(r543812)
@@ -16,6 +16,7 @@ GH_ACCOUNT=	beanshell
 GH_PROJECT=	beanshell
 
 USE_JAVA=	yes
+JAVA_BUILD=	8
 
 USE_ANT=	yes
 ALL_TARGET=	jarall
@@ -23,7 +24,7 @@ ALL_TARGET=	jarall
 SUB_FILES=	${PORTNAME}.sh
 SUB_LIST=	JARNAME=${PORTNAME}.jar
 
-PLIST_FILES=	%%JAVAJARDIR%%/${PORTNAME}.jar \
+PLIST_FILES=	${JAVAJARDIR}/${PORTNAME}.jar \
 		bin/${PORTNAME}
 
 do-install:



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