diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-12 19:15:13 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-12 19:15:13 +0000 |
commit | 96eb31fd8f82597a3bba27773271ab3c6d10fac6 (patch) | |
tree | 7e7db43ea23c217f5485a21acae2cc2d299d3284 | |
parent | 129bd491eac0f9014013ca46ec0cb93315f7a850 (diff) |
make dirs in /usr/share/sendmail owned by group wheel to match mtree
-rw-r--r-- | usr.sbin/sendmail/cf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sendmail/cf/Makefile b/usr.sbin/sendmail/cf/Makefile index 2815f32636a..e0a1210aa89 100644 --- a/usr.sbin/sendmail/cf/Makefile +++ b/usr.sbin/sendmail/cf/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1998/05/19 16:56:49 millert Exp $ +# $OpenBSD: Makefile,v 1.2 1998/11/12 19:15:12 millert Exp $ # NOOBJ= noobj @@ -6,7 +6,7 @@ FILES= README DIRS= cf domain feature hack m4 mailer ostype sh siteconfig install: - @${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ + @${INSTALL} -d -o ${BINOWN} -g wheel -m 755 \ ${DESTDIR}${SHAREDIR}/sendmail @echo installing ${FILES} @-for i in ${FILES}; do \ @@ -16,7 +16,7 @@ install: done @echo installing ${DIRS} @-for i in ${DIRS}; do \ - ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ + ${INSTALL} -d -o ${BINOWN} -g wheel -m 755 \ ${DESTDIR}${SHAREDIR}/sendmail/$$i; \ (cd $$i; for j in *.m[4c] *.sh Makefile; do \ if [ -f $$j ]; then \ |