diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2005-07-21 05:52:22 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2005-07-21 05:52:22 +0000 |
commit | 2b8ca9868d677130175aeb964bd0ebbabc80b4bf (patch) | |
tree | 82854b8d113768061bb440860778e0401218f32e /java | |
parent | 02f292a853af59d891fde1fdea0a699405b1cda0 (diff) | |
download | ports-2b8ca9868d677130175aeb964bd0ebbabc80b4bf.tar.gz ports-2b8ca9868d677130175aeb964bd0ebbabc80b4bf.zip |
. Fix the check for the distribution file existing since it must be
downloaded manually.
Pointed out by: pointyhat via kris
Notes
Notes:
svn path=/head/; revision=139785
Diffstat (limited to 'java')
-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 29526ce3f604..09543dcc6391 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> |