diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-23 03:01:07 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-23 03:01:07 +0800 |
commit | 89e9e517a9f1c97f22317b99b12b1133075eab02 (patch) | |
tree | faad1b92712e2988cd55bc71cc77494abb6ed655 /mail/postfix20 | |
parent | 164234dfead0f28fb873b763e6f378cb3313f426 (diff) | |
download | freebsd-ports-gnome-89e9e517a9f1c97f22317b99b12b1133075eab02.tar.gz freebsd-ports-gnome-89e9e517a9f1c97f22317b99b12b1133075eab02.tar.zst freebsd-ports-gnome-89e9e517a9f1c97f22317b99b12b1133075eab02.zip |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'mail/postfix20')
-rw-r--r-- | mail/postfix20/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/postfix20/Makefile b/mail/postfix20/Makefile index 3c0d378f2d33..b13c51ed22c3 100644 --- a/mail/postfix20/Makefile +++ b/mail/postfix20/Makefile @@ -3,7 +3,7 @@ # Date created: 18 Mar 1999 # Whom: torstenb # -# $Id: Makefile,v 1.2 1999/05/02 20:26:38 torstenb Exp $ +# $Id: Makefile,v 1.3 1999/08/04 13:52:58 billf Exp $ # DISTNAME= postfix-19990601 @@ -34,7 +34,7 @@ SHAREMODE= 0644 do-install: @${MKDIR} -m 755 ${PREFIX}/etc/postfix - @/usr/sbin/chown root:wheel ${PREFIX}/etc/postfix + @${CHOWN} root:wheel ${PREFIX}/etc/postfix @${INSTALL} -C -o root -g wheel -m 0644 ${WRKSRC}/conf/LICENSE \ ${PREFIX}/etc/postfix/LICENSE @for f in access main.cf master.cf ; do \ @@ -97,7 +97,7 @@ replace: @${ECHO_MSG} "===> Replacing sendmail" @if [ -e /usr/sbin/sendmail ]; then \ ${MV} -f /usr/sbin/sendmail /usr/sbin/sendmail.OFF; \ - chmod 0 /usr/sbin/sendmail.OFF; \ + ${CHMOD} 0 /usr/sbin/sendmail.OFF; \ fi @if [ -e ${PREFIX}/sbin/sendmail ]; then \ ${LN} -s ${PREFIX}/sbin/sendmail /usr/sbin/sendmail; \ @@ -105,7 +105,7 @@ replace: @${ECHO_MSG} "===> Replacing mailq" @if [ -e /usr/bin/mailq ]; then \ ${MV} -f /usr/bin/mailq /usr/bin/mailq.OFF; \ - chmod 0 /usr/bin/mailq.OFF; \ + ${CHMOD} 0 /usr/bin/mailq.OFF; \ fi @if [ -e ${PREFIX}/sbin/sendmail ]; then \ ${LN} -s ${PREFIX}/sbin/sendmail /usr/bin/mailq; \ @@ -113,7 +113,7 @@ replace: @${ECHO_MSG} "===> Replacing newaliases" @if [ -e /usr/bin/newaliases ]; then \ ${MV} -f /usr/bin/newaliases /usr/bin/newaliases.OFF; \ - chmod 0 /usr/bin/newaliases.OFF; \ + ${CHMOD} 0 /usr/bin/newaliases.OFF; \ fi @if [ -e ${PREFIX}/sbin/sendmail ]; then \ ${LN} -s ${PREFIX}/sbin/sendmail /usr/bin/newaliases; \ |