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 /graphics/sane-backends | |
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 'graphics/sane-backends')
-rw-r--r-- | graphics/sane-backends/Makefile.common | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/sane-backends/Makefile.common b/graphics/sane-backends/Makefile.common index 9004844b8f3..f466764d2a5 100644 --- a/graphics/sane-backends/Makefile.common +++ b/graphics/sane-backends/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.19 2005/09/27 09:29:56 wiz Exp $ +# $NetBSD: Makefile.common,v 1.20 2005/12/05 20:50:22 rillig Exp $ CATEGORIES?= graphics MASTER_SITES?= ftp://ftp.mostang.com/pub/sane/${DISTNAME}/ \ @@ -13,10 +13,10 @@ SANE_MAJOR?= 1 SANE_MINOR?= 0 SANE_MICRO?= 16 SANE_VERSION= ${SANE_MAJOR}.${SANE_MINOR}.${SANE_MICRO} -PLIST_SUBST+= SANE_MAJOR=${SANE_MAJOR} -PLIST_SUBST+= SANE_MINOR=${SANE_MINOR} -PLIST_SUBST+= SANE_MICRO=${SANE_MICRO} -PLIST_SUBST+= SANE_VERSION=${SANE_VERSION} +PLIST_SUBST+= SANE_MAJOR=${SANE_MAJOR:Q} +PLIST_SUBST+= SANE_MINOR=${SANE_MINOR:Q} +PLIST_SUBST+= SANE_MICRO=${SANE_MICRO:Q} +PLIST_SUBST+= SANE_VERSION=${SANE_VERSION:Q} CONFLICTS+= sane<=1.0.3 |