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 /sysutils/coreutils | |
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 'sysutils/coreutils')
-rw-r--r-- | sysutils/coreutils/MESSAGE.gsu | 4 | ||||
-rw-r--r-- | sysutils/coreutils/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/coreutils/MESSAGE.gsu b/sysutils/coreutils/MESSAGE.gsu index 540e676f2a6..5540153ccec 100644 --- a/sysutils/coreutils/MESSAGE.gsu +++ b/sysutils/coreutils/MESSAGE.gsu @@ -1,7 +1,7 @@ =========================================================================== -$NetBSD: MESSAGE.gsu,v 1.1 2004/01/17 00:14:14 recht Exp $ +$NetBSD: MESSAGE.gsu,v 1.2 2005/12/05 20:50:59 rillig Exp $ -The GNU ${PKGNAME} version of su doesn't support the wheel group. +The GNU ${PKGNAME} version of su doesn't support the wheel group. Because of that it is installed without the setuid bit on ${OPSYS}. =========================================================================== diff --git a/sysutils/coreutils/Makefile b/sysutils/coreutils/Makefile index c4d6cbe280a..0bb9587b8df 100644 --- a/sysutils/coreutils/Makefile +++ b/sysutils/coreutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2005/08/28 09:07:21 tron Exp $ +# $NetBSD: Makefile,v 1.29 2005/12/05 20:50:59 rillig Exp $ DISTNAME= coreutils-5.2.1 PKGREVISION= 1 @@ -39,7 +39,7 @@ PLIST_SUBST+= COREUTILS_HAVE_HOSTID="@comment " PLIST_SUBST+= COREUTILS_HAVE_HOSTID="" .endif -CONFIGURE_ARGS= --program-prefix=${GNU_PROGRAM_PREFIX} +CONFIGURE_ARGS+= --program-prefix=${GNU_PROGRAM_PREFIX:Q} # if GNU_PROGRAM_PREFIX == 'g' # devel/id-utils installs a 'gid' program, so conflict with it # databases/geneweb a 'gwc' program, so conflict with it @@ -55,7 +55,7 @@ CONFLICTS+= graphviz-[0-9]* CONFLICTS+= teTeX-bin<3 .endif -PLIST_SUBST+= GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX} +PLIST_SUBST+= GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX:Q} BUILD_DEFS+= GNU_PROGRAM_PREFIX .if ${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD" || \ |