diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-23 07:33:47 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-23 07:33:47 +0800 |
commit | e36f9dbee84ccfd7ed078050303a76b569d0ead0 (patch) | |
tree | 4f6e254ed273f40def6ec9e6d94066be8e9c6588 /mail/postfix27 | |
parent | 26083abcc9eb48fec93239f2c3257eab60edb1c0 (diff) | |
download | freebsd-ports-gnome-e36f9dbee84ccfd7ed078050303a76b569d0ead0.tar.gz freebsd-ports-gnome-e36f9dbee84ccfd7ed078050303a76b569d0ead0.tar.zst freebsd-ports-gnome-e36f9dbee84ccfd7ed078050303a76b569d0ead0.zip |
awk -> ${AWK}
basename -> ${BASENAME}
cat -> ${CAT}
cp -> ${CP}
ldconfig -> ${LDCONFIG}
mkdir -> ${MKDIR}
Diffstat (limited to 'mail/postfix27')
-rw-r--r-- | mail/postfix27/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix27/Makefile b/mail/postfix27/Makefile index b13c51ed22c3..d4a41ce6f7d3 100644 --- a/mail/postfix27/Makefile +++ b/mail/postfix27/Makefile @@ -3,7 +3,7 @@ # Date created: 18 Mar 1999 # Whom: torstenb # -# $Id: Makefile,v 1.3 1999/08/04 13:52:58 billf Exp $ +# $Id: Makefile,v 1.4 1999/08/22 18:59:00 mharo Exp $ # DISTNAME= postfix-19990601 @@ -52,7 +52,7 @@ do-install: done @${INSTALL} -C -o root -g wheel -m 755 ${WRKSRC}/conf/postfix-script-sgid \ ${PREFIX}/etc/postfix/postfix-script - @mkdir -p -m 0755 ${PREFIX}/libexec/postfix + @${MKDIR} -m 0755 ${PREFIX}/libexec/postfix @for f in bounce cleanup error fsstone local master pickup pipe qmgr \ showq smtp smtpd trivial-rewrite ; do \ ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/libexec/$$f \ @@ -76,7 +76,7 @@ do-install: ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/man/man8/$$f \ ${PREFIX}/man/man8/$$f ;\ done - @mkdir -p -m 0755 /var/spool/postfix + @${MKDIR} -m 0755 /var/spool/postfix @if [ ! -e ${PREFIX}/etc/postfix/main.cf ]; then \ ${CP} -p ${PREFIX}/etc/postfix/sample-main.cf \ ${PREFIX}/etc/postfix/main.cf; \ |