diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2019-07-04 02:40:49 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2019-07-04 02:40:49 +0000 |
commit | 6468b14015cce30bed4a12bb264b47610ebe18bb (patch) | |
tree | f981ae508e35c6411ec9dea0d3349f88b756d3a4 /java | |
parent | Adjust to proposed changes in Java versioning (diff) |
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.
Notes
Notes:
svn path=/head/; revision=505812
Diffstat (limited to 'java')
-rw-r--r-- | java/icedtea-web/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/icedtea-web/Makefile b/java/icedtea-web/Makefile index 50cd339f9db0..9e7fb7b74d69 100644 --- a/java/icedtea-web/Makefile +++ b/java/icedtea-web/Makefile @@ -81,7 +81,7 @@ JUNIT_JAR= ${JAVALIBDIR}/junit.jar .include <bsd.port.pre.mk> -.if ${JAVA_PORT_VERSION} == "1.6.0" +.if ${JAVA_PORT_VERSION:M*6*} pre-extract: @${ECHO_MSG} @${ECHO_MSG} "IMPORTANT: To build IcedTea-Web ${PORTVERSION}, you have to turn on 'ICEDTEA' option" |