diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-12-07 02:38:52 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-12-07 02:38:52 +0000 |
commit | 0a1bd5acad4638865116c0da61447ceb86ee6ef4 (patch) | |
tree | 1de4a04cf479873e6e59c8e7b26df68132cd5628 /sysutils/fdgw | |
parent | a2849a9dcac8e838b0156047f813c71851ab8a56 (diff) | |
download | pkgsrc-0a1bd5acad4638865116c0da61447ceb86ee6ef4.tar.gz |
Replace IGNORE with PKG_FAIL_REASON or PKG_SKIP_REASON as appropriate.
Diffstat (limited to 'sysutils/fdgw')
-rw-r--r-- | sysutils/fdgw/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/fdgw/Makefile b/sysutils/fdgw/Makefile index d26937b5e8f..09e8a3bb413 100644 --- a/sysutils/fdgw/Makefile +++ b/sysutils/fdgw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2002/04/19 10:34:21 wennmach Exp $ +# $NetBSD: Makefile,v 1.7 2002/12/07 02:39:06 schmonz Exp $ # DISTNAME= fdgw-20020130 @@ -50,13 +50,13 @@ post-install: .include "../../mk/bsd.prefs.mk" .if !exists(${X11BASE}/bin/lndir) -IGNORE= "${PKGNAME} requires the 'lndir' command, and hence X11" +PKG_FAIL_REASON= "${PKGNAME} requires the 'lndir' command, and hence X11" .endif # we need the NetBSD source tree. BSDSRCDIR?= /usr/src .if !exists(${BSDSRCDIR}) -IGNORE= "${PKGNAME} requires the NetBSD source tree in BSDSRCDIR (${BSDSRCDIR})" +PKG_FAIL_REASON+= "${PKGNAME} requires the NetBSD source tree in BSDSRCDIR (${BSDSRCDIR})" .endif .include "../../mk/bsd.pkg.mk" |