diff options
author | rillig <rillig> | 2005-08-23 11:48:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-08-23 11:48:47 +0000 |
commit | 47e4458dad4a3f51b7c3aa5ed9c9cd8e4cef1869 (patch) | |
tree | 47a0e07bf95d82fd146b551a36227c5d1c0676ab /sysutils/amanda-common | |
parent | bf0c96ed24fea2ba04e4f9c80923df5e3dcdc0f8 (diff) | |
download | pkgsrc-47e4458dad4a3f51b7c3aa5ed9c9cd8e4cef1869.tar.gz |
The real user name in PKG_USERS does not need to be escaped with double
backslashes anymore. A single backslash is enough. Changed the
definition in all affected packages. For those that are not caught, an
additional check is placed into bsd.pkginstall.mk.
Diffstat (limited to 'sysutils/amanda-common')
-rw-r--r-- | sysutils/amanda-common/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/amanda-common/Makefile b/sysutils/amanda-common/Makefile index 9e703761bc6..a9e3be35d9f 100644 --- a/sysutils/amanda-common/Makefile +++ b/sysutils/amanda-common/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2005/08/02 09:26:06 seb Exp $ +# $NetBSD: Makefile,v 1.36 2005/08/23 11:48:51 rillig Exp $ PKGNAME= amanda-common-${VERS} PKGREVISION= 2 @@ -28,7 +28,7 @@ CONFIGURE_ENV+= ac_cv_lib_ncurses_tgetent=no CONFIGURE_ENV+= ac_cv_lib_readline_readline=no PKG_GROUPS= ${AMANDA_GROUP} -PKG_USERS= ${AMANDA_USER}:${AMANDA_GROUP}::Amanda\\ user::${SH} +PKG_USERS= ${AMANDA_USER}:${AMANDA_GROUP}::Amanda\ user::${SH} OWN_DIRS_PERMS= ${AMANDA_VAR} ${AMANDA_USER} ${AMANDA_GROUP} 0700 OWN_DIRS_PERMS+= ${AMANDA_VAR}/gnutar-lists ${AMANDA_USER} ${AMANDA_GROUP} 0700 |