diff options
author | glewis <glewis@FreeBSD.org> | 2005-07-21 05:52:22 +0000 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2005-07-21 05:52:22 +0000 |
commit | ece7b5d358de95f8232139fdd4e0b0d696b8de63 (patch) | |
tree | 786b836db36d67d2c0878aeb7501396765371ddf | |
parent | 27e73623fe86d8bcc2d96fea08db2f4918c3d6f6 (diff) | |
download | FreeBSD-ports-ece7b5d358de95f8232139fdd4e0b0d696b8de63.zip FreeBSD-ports-ece7b5d358de95f8232139fdd4e0b0d696b8de63.tar.gz |
. Fix the check for the distribution file existing since it must be
downloaded manually.
Pointed out by: pointyhat via kris
-rw-r--r-- | java/jbootstrap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/jbootstrap/Makefile b/java/jbootstrap/Makefile index 29526ce..09543dc 100644 --- a/java/jbootstrap/Makefile +++ b/java/jbootstrap/Makefile @@ -28,8 +28,8 @@ RESTRICTED= "Redistribution of pre-compiled binaries is not permitted" IGNORE= This port requires perl 5.8 or above. .endif -.if !exists(${DISTDIR}/${DISTFILE}) && !defined(PACKAGE_BUILDING) -IGNORE= Please fetch ${DISTFILE} from http://www.eyesbeyond.com/freebsddom/java/jbootstrap.html and place it in ${DISTDIR} +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) +IGNORE= Please fetch ${DISTNAME}${EXTRACT_SUFX} from http://www.eyesbeyond.com/freebsddom/java/jbootstrap.html and place it in ${DISTDIR} .endif .include <bsd.port.post.mk> |