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 /lang/icon | |
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 'lang/icon')
-rw-r--r-- | lang/icon/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/icon/Makefile b/lang/icon/Makefile index fbf2760f9cf..608d639ff4a 100644 --- a/lang/icon/Makefile +++ b/lang/icon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2005/06/01 18:02:58 jlam Exp $ +# $NetBSD: Makefile,v 1.36 2005/12/05 20:50:25 rillig Exp $ DISTNAME= icon.v942src PKGNAME= icon-9.4.2 @@ -35,7 +35,7 @@ NAME= sun_gcc . elif !empty(CC_VERSION:MSun) NAME= sun_sunc . else -PKG_FAIL_REASON= "${PKGNAME} does not know about ${CC_VERSION}" +PKG_FAIL_REASON+= "${PKGNAME} does not know about ${CC_VERSION}" . endif . if ${MACHINE_ARCH} == "sparc" @@ -45,7 +45,7 @@ PTHREAD_OPTS+= require native . endif .else -PKG_FAIL_REASON= "${PKGNAME} does not have the correct config name for this system" +PKG_FAIL_REASON+= "${PKGNAME} does not have the correct config name for this system" .endif .include "../../mk/x11.buildlink3.mk" |