diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2012-05-27 03:51:15 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2012-05-27 03:51:15 +0000 |
commit | 8c6175a3b58b8663c823ea9f8f37e7b53a3b1207 (patch) | |
tree | 327cd4b0d505b2002ef578e8b7a83efd7044174a /java/openjdk6 | |
parent | - Update to 1.1.1 (diff) |
. Specifically reference zip/unzip in ${LOCALBASE}/bin, since that is where
the JDK build looks for them, but FreeBSD 9.x has them available in /usr/bin.
Adjusting the JDK check is a harder fix, this will get things building
again on 9.x quickly.
PR: 166996
Notes
Notes:
svn path=/head/; revision=297507
Diffstat (limited to 'java/openjdk6')
-rw-r--r-- | java/openjdk6/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/openjdk6/Makefile b/java/openjdk6/Makefile index 551ad9866771..2c05ba1a8992 100644 --- a/java/openjdk6/Makefile +++ b/java/openjdk6/Makefile @@ -31,8 +31,8 @@ COMMENT= Oracle's Java 6 virtual machine release under the GPL v2 LICENSE= GPLv2 -BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \ - unzip:${PORTSDIR}/archivers/unzip \ +BUILD_DEPENDS= ${LOCALBASE}/bin/zip:${PORTSDIR}/archivers/zip \ + ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip \ ${LOCALBASE}/include/cups/cups.h:${PORTSDIR}/print/cups-client LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ |