diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-02-25 04:17:35 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-02-25 04:17:35 +0000 |
commit | d32e698de6a63cf0273391b498d5c8e2bc3ea265 (patch) | |
tree | f7733ee24f18b76cbeda1e577b4cec2485f4cf3e /mail/postfix | |
parent | b1fe99775bd942bbd05e584ba34834516831b04a (diff) | |
download | pkgsrc-d32e698de6a63cf0273391b498d5c8e2bc3ea265.tar.gz |
Cleanup MKDIR usage => INSTALL_*_DIR
XXX need to teach pkglint to be more picky about this
Diffstat (limited to 'mail/postfix')
-rw-r--r-- | mail/postfix/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index 511b9a1a607..70494158876 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2001/02/17 18:25:00 wiz Exp $ +# $NetBSD: Makefile,v 1.27 2001/02/25 04:17:59 hubertf Exp $ DISTNAME= postfix-19991231-pl13 PKGNAME= postfix-19991231pl13 @@ -61,7 +61,7 @@ post-build: <${FILESDIR}/mailer.conf >${WRKDIR}/mailer.conf.postfix pre-install: - ${MKDIR} /etc/postfix ${PREFIX}/share/postfix \ + ${INSTALL_DATA_DIR} /etc/postfix ${PREFIX}/share/postfix \ ${PREFIX}/share/doc/postfix ${PREFIX}/libexec/postfix ${CHOWN} root:wheel ${PREFIX}/share/postfix ${PREFIX}/libexec/postfix ${CHMOD} 755 ${PREFIX}/share/postfix ${PREFIX}/libexec/postfix @@ -69,7 +69,7 @@ pre-install: post-install: ${INSTALL_DATA} ${WRKDIR}/mailer.conf.postfix ${PREFIX}/etc ${LN} -sf ${PREFIX}/share/postfix/postfix-script /etc/postfix - -${MKDIR} ${POSTFIX_SPOOL} + -${INSTALL_DATA_DIR} ${POSTFIX_SPOOL} ${CHMOD} 755 ${POSTFIX_SPOOL} ${TEST} -f /etc/postfix/main.cf || ${INSTALL_DATA} ${PREFIX}/share/postfix/main.cf /etc/postfix ${TEST} -f /etc/postfix/master.cf || ${INSTALL_DATA} ${PREFIX}/share/postfix/master.cf /etc/postfix |