diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-01-17 04:49:02 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-01-17 04:49:02 +0000 |
commit | b0f2e3354b830008bcc60dbef423127ea5c9e1f8 (patch) | |
tree | 73166411e52f22c8c07f8f7cf31205c75985cb8b /usr.sbin | |
parent | 8f10b75fcb13b1d71408abf8ef5f22583c8abf94 (diff) |
Fixes:
pull in ../../Makefile.inc
install mailq and newaliases in /usr/bin
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sendmail/src/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sendmail/src/Makefile b/usr.sbin/sendmail/src/Makefile index 11b697127e9..dfbae6614bd 100644 --- a/usr.sbin/sendmail/src/Makefile +++ b/usr.sbin/sendmail/src/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 1996/12/08 15:00:06 downsj Exp $ +# $OpenBSD: Makefile,v 1.10 1997/01/17 04:49:01 downsj Exp $ # # OpenBSD Makefile # @@ -30,9 +30,8 @@ SRCS= alias.c arpadate.c clock.c collect.c conf.c convtime.c daemon.c \ srvrsmtp.c stab.c stats.c sysexits.c trace.c udb.c usersmtp.c \ util.c version.c MAN= aliases.5 mailstats.8 mailq.1 newaliases.1 sendmail.8 -LINKS= ${BINDIR}/sendmail ${BINDIR}/newaliases ${BINDIR}/sendmail ${BINDIR}/mailq -INSTALL=install -BINDIR= /usr/sbin +LINKS= ${BINDIR}/sendmail /usr/bin/newaliases \ + ${BINDIR}/sendmail /usr/bin/mailq BINOWN= root BINGRP= kmem BINMODE=6555 @@ -45,4 +44,5 @@ beforeinstall: ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/sendmail.hf ${DESTDIR}/usr/share/misc +.include "../../Makefile.inc" .include <bsd.prog.mk> |