From 89e9e517a9f1c97f22317b99b12b1133075eab02 Mon Sep 17 00:00:00 2001 From: mharo Date: Sun, 22 Aug 1999 19:01:07 +0000 Subject: chmod -> ${CHMOD} chown -> ${CHOWN} --- mail/smtpd/Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'mail/smtpd') diff --git a/mail/smtpd/Makefile b/mail/smtpd/Makefile index e4061eefcbe0..5da753c56af2 100644 --- a/mail/smtpd/Makefile +++ b/mail/smtpd/Makefile @@ -3,7 +3,7 @@ # Date created: 06 Feb 1998 # Whom: Joao Carlos Mendes Luis # -# $Id: Makefile,v 1.1.1.1 1998/03/01 01:58:51 obrien Exp $ +# $Id: Makefile,v 1.2 1998/07/03 23:30:14 steve Exp $ # DISTNAME= smtpd-2.0 @@ -30,16 +30,16 @@ post-install: @${ECHO} "Creating spool directories..." @${MKDIR} ${SPOOLBASE} - @chown root.uucp ${SPOOLBASE} - @chmod 0710 ${SPOOLBASE} + @${CHOWN} root.uucp ${SPOOLBASE} + @${CHMOD} 0710 ${SPOOLBASE} @${MKDIR} ${SPOOLBASE}/mqueue - @chown uucp.uucp ${SPOOLBASE}/mqueue - @chmod 0700 ${SPOOLBASE}/mqueue + @${CHOWN} uucp.uucp ${SPOOLBASE}/mqueue + @${CHMOD} 0700 ${SPOOLBASE}/mqueue @${MKDIR} ${SPOOLBASE}/etc - @chown root.uucp ${SPOOLBASE}/etc - @chmod 0710 ${SPOOLBASE}/etc + @${CHOWN} root.uucp ${SPOOLBASE}/etc + @${CHMOD} 0710 ${SPOOLBASE}/etc .if !defined(BATCH) @${CP} -p /etc/resolv.conf ${SPOOLBASE}/etc @${CP} -p /etc/localtime ${SPOOLBASE}/etc @@ -60,8 +60,8 @@ post-install: @sed s+!!PREFIX!!+${PREFIX}+ \ < ${FILESDIR}/smtpd.sh \ > ${PREFIX}/etc/rc.d/smtpd.sh - @chmod 0700 ${PREFIX}/etc/rc.d/smtpd.sh - @chown 0.0 ${PREFIX}/etc/rc.d/smtpd.sh + @${CHMOD} 0700 ${PREFIX}/etc/rc.d/smtpd.sh + @${CHOWN} 0.0 ${PREFIX}/etc/rc.d/smtpd.sh @${ECHO} "Done!" -- cgit