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 | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /sysutils/user | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.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/user')
-rw-r--r-- | sysutils/user/DESCR | 6 | ||||
-rw-r--r-- | sysutils/user/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/user/DESCR b/sysutils/user/DESCR index 5fefbd8b9d7..3cc38bae07b 100644 --- a/sysutils/user/DESCR +++ b/sysutils/user/DESCR @@ -1,8 +1,8 @@ The usermgmt suite of programs provides SVR4/Solaris-compatible {user,group}{add,del,mod} commands, and two utilities, user(8) and -group(8) whcih perform the same functions. In addition, some -extensions are provided, which allow a user to be created with the -same uid and gid, for example. +group(8) which perform the same functions. In addition, some extensions +are provided, which allow a user to be created with the same uid and +gid, for example. The usermgmt suite was based on the old addnerd package, which, in turn, was based on Matt Green's addbozo script. diff --git a/sysutils/user/Makefile b/sysutils/user/Makefile index 8abe3ebd656..7f009ab63c9 100644 --- a/sysutils/user/Makefile +++ b/sysutils/user/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2004/01/20 12:26:16 agc Exp $ +# $NetBSD: Makefile,v 1.17 2005/12/05 20:51:01 rillig Exp $ # # Note to package maintainers: @@ -16,7 +16,7 @@ COMMENT= Solaris-compatible {user,group}{add,del,mod} commands ONLY_FOR_PLATFORM= NetBSD-*-* # already in Solaris base system .if exists(/usr/sbin/user) -PKG_SKIP_REASON= "${PKGNAME} is part of your ${OPSYS} distribution" +PKG_SKIP_REASON+= "${PKGNAME} is part of your ${OPSYS} distribution" .endif WRKSRC= ${WRKDIR}/user |