diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /print/cups | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.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 'print/cups')
-rw-r--r-- | print/cups/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index 64b0fc31ea6..610843731ec 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.98 2005/08/24 08:20:46 rillig Exp $ +# $NetBSD: Makefile,v 1.99 2005/12/05 20:50:52 rillig Exp $ # # The CUPS author is very good about taking back changes into the main # CUPS distribution. The correct place to send patches or bug-fixes is: @@ -49,7 +49,7 @@ CONFIGURE_ARGS+= --with-manext=bsd CONFIGURE_ARGS+= --enable-libtool CONFIGURE_ARGS+= --enable-slp CONFIGURE_ARGS+= --enable-ssl -CONFIGURE_ENV+= DSOFLAGS="${LDFLAGS}" +CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q} .include "../../mk/bsd.prefs.mk" @@ -74,8 +74,8 @@ PLIST_SUBST+= PAM="@comment " # CUPS_USER?= lp CUPS_GROUP?= sys -FILES_SUBST+= CUPS_USER=${CUPS_USER} -FILES_SUBST+= CUPS_GROUP=${CUPS_GROUP} +FILES_SUBST+= CUPS_USER=${CUPS_USER:Q} +FILES_SUBST+= CUPS_GROUP=${CUPS_GROUP:Q} BUILD_DEFS+= CUPS_USER CUPS_GROUP |