diff options
author | deberg <deberg@pkgsrc.org> | 2002-03-24 22:17:22 +0000 |
---|---|---|
committer | deberg <deberg@pkgsrc.org> | 2002-03-24 22:17:22 +0000 |
commit | 9e7d55859480fbfc07c1cab34bc3f1c10d994b6c (patch) | |
tree | f9a2a3f2edeb6a927ffd7a9bb9081df10eca2ffc | |
parent | f3f1c5fecd1feb85632ca19bb4d736c4f3f66913 (diff) | |
download | pkgsrc-9e7d55859480fbfc07c1cab34bc3f1c10d994b6c.tar.gz |
solaris install can only create one directory at a time
-rw-r--r-- | mail/postfix/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index de1eb000d06..b9fc6b61e02 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.57 2002/03/22 09:01:10 martti Exp $ +# $NetBSD: Makefile,v 1.58 2002/03/24 22:17:22 deberg Exp $ DISTNAME= postfix-1.1.5 PKGREVISION= 1 @@ -90,8 +90,10 @@ post-build: <${FILESDIR}/mailer.conf >${WRKDIR}/mailer.conf.postfix pre-install: - ${INSTALL_DATA_DIR} /etc/postfix ${PREFIX}/share/postfix \ - ${PREFIX}/share/doc/postfix ${PREFIX}/libexec/postfix + ${INSTALL_DATA_DIR} /etc/postfix + ${INSTALL_DATA_DIR} ${PREFIX}/share/postfix + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postfix + ${INSTALL_DATA_DIR} ${PREFIX}/libexec/postfix ${CHOWN} ${ROOT_USER}:${ROOT_GROUP} ${PREFIX}/share/postfix \ ${PREFIX}/libexec/postfix ${CHMOD} 755 ${PREFIX}/share/postfix ${PREFIX}/libexec/postfix |