diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | b4f920543059af038598712771c3211999ef42a6 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /sysutils/fdgw | |
parent | 5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff) | |
download | pkgsrc-b4f920543059af038598712771c3211999ef42a6.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
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 679f683c41b..62cb6444ad1 100644 --- a/sysutils/fdgw/Makefile +++ b/sysutils/fdgw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2005/07/08 19:15:25 kristerw Exp $ +# $NetBSD: Makefile,v 1.12 2005/12/05 20:51:00 rillig Exp $ # DISTNAME= fdgw-20020130 @@ -15,7 +15,7 @@ _IMG_DST_DIR = ${PREFIX}/fdgw/${MACHINE_ARCH} ONLY_FOR_PLATFORM= NetBSD-1.5.*-i386 BUILD_TARGET= dist-build -MAKE_ENV+= BSDSRCDIR="${BSDSRCDIR}" +MAKE_ENV+= BSDSRCDIR=${BSDSRCDIR:Q} pre-fetch: @ ${ECHO} ""; @@ -50,7 +50,7 @@ post-install: .include "../../mk/bsd.prefs.mk" .if !exists(${X11BASE}/bin/lndir) && ${OPSYS} == "NetBSD" -PKG_FAIL_REASON= "${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. |