diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2019-10-17 20:38:38 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2019-10-17 20:38:38 +0000 |
commit | 4b6716a2930a9021659cc721e022bb3f8f99d618 (patch) | |
tree | bf76a2b33dd79a8da150c2358b95d0652fc6f51e /java | |
parent | Update to 13.0.1 GA (diff) |
Fix internal versioning
* Set the Java version correctly
* Bump PORTREVISION since some software may rely on this
Notes
Notes:
svn path=/head/; revision=514683
Diffstat (limited to 'java')
-rw-r--r-- | java/openjdk12/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/openjdk12/Makefile b/java/openjdk12/Makefile index cd076b764487..9f22714aedc3 100644 --- a/java/openjdk12/Makefile +++ b/java/openjdk12/Makefile @@ -3,6 +3,7 @@ PORTNAME= openjdk DISTVERSIONPREFIX= jdk- DISTVERSION= ${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} +PORTREVISION= 1 CATEGORIES= java devel PKGNAMESUFFIX?= ${JDK_MAJOR_VERSION} @@ -82,7 +83,7 @@ CONFIGURE_ARGS= --with-boot-jdk=${BOOTSTRAPJDKDIR} \ --x-includes=${LOCALBASE}/include \ --x-libraries=${LOCALBASE}/lib \ --with-cacerts-file=${FILESDIR}/cacerts \ - --with-version-string=${JDK_MAJOR_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} \ + --with-version-string=${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} \ --with-native-debug-symbols=none \ --with-debug-level=release |