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 /net/driftnet | |
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 'net/driftnet')
-rw-r--r-- | net/driftnet/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/driftnet/Makefile b/net/driftnet/Makefile index cd5f580f964..2e30cced54c 100644 --- a/net/driftnet/Makefile +++ b/net/driftnet/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2005/06/17 03:50:24 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2005/12/05 20:50:45 rillig Exp $ # DISTNAME= driftnet-0.1.6 @@ -10,11 +10,11 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.ex-parrot.com/~chris/driftnet/ COMMENT= Real-time image sniffer -DEPENDS= mpg123-[0-9]*:../../audio/mpg123 +DEPENDS+= mpg123-[0-9]*:../../audio/mpg123 BUILD_TARGET= default -MAKE_ENV+= CAT="${CAT}" TRUE="${TRUE}" +MAKE_ENV+= CAT=${CAT:Q} TRUE=${TRUE:Q} INSTALLATION_DIRS= bin man/man1 |