diff options
-rw-r--r-- | etc/Makefile | 3 | ||||
-rw-r--r-- | usr.bin/mail/Makefile | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index cb5225e5d8f..592dec32447 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.63 1997/07/27 23:35:38 downsj Exp $ +# $OpenBSD: Makefile,v 1.64 1997/07/28 10:01:11 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -170,6 +170,7 @@ distribution-etc-root-var: distrib-dirs .endif (cd ../usr.sbin/sendmail/cf/cf; ${MAKE} distribution) (cd ../usr.sbin/ypserv/ypinit; ${MAKE} distribution) + (cd ../usr.bin/mail; ${MAKE} distribution) distribution: distribution-etc-root-var (cd ..; ${MAKE} install) diff --git a/usr.bin/mail/Makefile b/usr.bin/mail/Makefile index 28e7d78af58..bc9daa66cce 100644 --- a/usr.bin/mail/Makefile +++ b/usr.bin/mail/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1997/04/27 20:56:49 millert Exp $ +# $OpenBSD: Makefile,v 1.7 1997/07/28 10:01:12 deraadt Exp $ # $NetBSD: Makefile,v 1.8 1996/06/08 19:48:09 christos Exp $ PROG= mail @@ -13,6 +13,8 @@ MLINKS= mail.1 Mail.1 mail.1 mailx.1 beforeinstall: cd ${.CURDIR}/misc; ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ -m 444 ${SFILES} ${DESTDIR}/usr/share/misc + +distribution: cd ${.CURDIR}/misc; ${INSTALL} ${INSTALL_COPY} -o root -g wheel \ -m 644 ${EFILES} ${DESTDIR}/etc |