diff options
author | agc <agc@pkgsrc.org> | 2001-12-05 15:00:44 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-12-05 15:00:44 +0000 |
commit | 57aa4707d7f3b6dbe02282c32bd65ab0c8a8ac01 (patch) | |
tree | 724e606740f3a6533da580088062080cdc00e030 /mail/postfix | |
parent | d2c40c22fb3b05913e9af1f4c3ffb90259f2fd26 (diff) | |
download | pkgsrc-57aa4707d7f3b6dbe02282c32bd65ab0c8a8ac01.tar.gz |
s/root/${ROOT_USER}/g, now that the definition appears in the
defs.${OPSYS}.mk files.
Diffstat (limited to 'mail/postfix')
-rw-r--r-- | mail/postfix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index c8983d8534a..6d59509e696 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2001/12/03 05:36:47 kent Exp $ +# $NetBSD: Makefile,v 1.52 2001/12/05 15:00:46 agc Exp $ DISTNAME= postfix-20010228-pl08 PKGNAME= postfix-20010228pl8 @@ -76,7 +76,7 @@ post-build: pre-install: ${INSTALL_DATA_DIR} /etc/postfix ${PREFIX}/share/postfix \ ${PREFIX}/share/doc/postfix ${PREFIX}/libexec/postfix - ${CHOWN} root:wheel ${PREFIX}/share/postfix ${PREFIX}/libexec/postfix + ${CHOWN} ${ROOT_USER}:${ROOT_GROUP} ${PREFIX}/share/postfix ${PREFIX}/libexec/postfix ${CHMOD} 755 ${PREFIX}/share/postfix ${PREFIX}/libexec/postfix -${RM} -f ${WRKSRC}/conf/*.orig .if defined(POSTFIX_USE_SASL_AUTH) && ${POSTFIX_USE_SASL_AUTH} == "YES" |