diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2007-04-11 20:48:22 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2007-04-11 20:48:22 +0000 |
commit | d519e21889d8c12a65aeb8fc9c526897f502f2b6 (patch) | |
tree | 6871a851a66e02af148c97ce23689b6fdeaea3f6 /java/diablo-jdk15/Makefile | |
parent | 7dc7ee97660d79f63a7c0eaffd6a821e44748c11 (diff) |
. Fix the check for 7.x which would previously erroneously try to install
the 5.x version on 7.x.
Submitted by: des
Notes
Notes:
svn path=/head/; revision=189819
Diffstat (limited to 'java/diablo-jdk15/Makefile')
-rw-r--r-- | java/diablo-jdk15/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/diablo-jdk15/Makefile b/java/diablo-jdk15/Makefile index b1aeba239d87..61bb5f32a93a 100644 --- a/java/diablo-jdk15/Makefile +++ b/java/diablo-jdk15/Makefile @@ -45,7 +45,9 @@ INSTALL_DIR= ${PREFIX}/${PKGNAMEPREFIX}jdk${JDK_VERSION} .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 600000 && ${OSVERSION} <= 700000 +.if ${OSVERSION} >= 700000 +IGNORE= Not available for FreeBSD 7.x yet +.elif ${OSVERSION} >= 600000 JDK_OSREL=freebsd6 .elif ${OSVERSION} >= 500000 && ${ARCH} == "i386" JDK_OSREL=freebsd5 |