diff options
author | rillig <rillig@pkgsrc.org> | 2005-08-23 11:48:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-08-23 11:48:47 +0000 |
commit | 7a95adad42b3c7b40d157d5aad4d76454fc61dfd (patch) | |
tree | 47a0e07bf95d82fd146b551a36227c5d1c0676ab /net/vsftpd | |
parent | b6e31cb4fa6ac9424537a0ed5dbca1d213ba4144 (diff) | |
download | pkgsrc-7a95adad42b3c7b40d157d5aad4d76454fc61dfd.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 'net/vsftpd')
-rw-r--r-- | net/vsftpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/vsftpd/Makefile b/net/vsftpd/Makefile index e4d2eb44690..a0289b79239 100644 --- a/net/vsftpd/Makefile +++ b/net/vsftpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2005/04/11 21:47:02 tv Exp $ +# $NetBSD: Makefile,v 1.16 2005/08/23 11:48:50 rillig Exp $ # DISTNAME= vsftpd-1.2.2 @@ -20,7 +20,7 @@ RCD_SCRIPTS= vsftpd VSFTPD_USER?= vsftpd VSFTPD_GROUP?= vsftpd PKG_GROUPS= ${VSFTPD_GROUP} -PKG_USERS= ${VSFTPD_USER}:${VSFTPD_GROUP}::vsftpd\\ user +PKG_USERS= ${VSFTPD_USER}:${VSFTPD_GROUP}::vsftpd\ user DOCDIR= ${PREFIX}/share/doc/vsftpd EGDIR= ${PREFIX}/share/examples/vsftpd |