diff options
author | rillig <rillig@pkgsrc.org> | 2005-08-24 12:34:42 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-08-24 12:34:42 +0000 |
commit | b27eb00001c92f16868cb72d711e8094fbc94aa3 (patch) | |
tree | 239d0ae03399c82e39d2a5b44aa7c31741b4c7bc /mk | |
parent | 126a7300316127abdec328c4fd779d5849a66e21 (diff) | |
download | pkgsrc-b27eb00001c92f16868cb72d711e8094fbc94aa3.tar.gz |
Fixed a typo and added a comment about when to remove the deprecation
error message about the double-backslash quoting in PKG_USERS.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/install/bsd.pkginstall.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/install/bsd.pkginstall.mk b/mk/install/bsd.pkginstall.mk index e30f29544ef..4fd5bdf375e 100644 --- a/mk/install/bsd.pkginstall.mk +++ b/mk/install/bsd.pkginstall.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkginstall.mk,v 1.24 2005/08/23 12:01:52 rillig Exp $ +# $NetBSD: bsd.pkginstall.mk,v 1.25 2005/08/24 12:34:42 rillig Exp $ # # This Makefile fragment is included by bsd.pkg.mk to use the common # INSTALL/DEINSTALL scripts. To use this Makefile fragment, simply: @@ -119,11 +119,12 @@ _PKG_USER_SHELL?= ${NOLOGIN} FILES_SUBST+= PKG_USER_HOME=${_PKG_USER_HOME} FILES_SUBST+= PKG_USER_SHELL=${_PKG_USER_SHELL} +# REMOVE: after 2005Q4 .if !empty(PKG_USERS:M*\\\\*) PKG_FAIL_REASON+= "[bsd.pkginstall.mk] PKG_USERS must not contain double backslashes." .endif -# Interix is very Special in that users are groups cannot have the +# Interix is very special in that users are groups cannot have the # same name. Interix.mk tries to work around this by overriding # some specific package defaults. If we get here and there's still a # conflict, add a breakage indicator to make sure the package won't |