diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-13 23:36:34 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-13 23:36:34 +0000 |
commit | cb481948c6a40f0976896489bd9a4b9b7eae4ab9 (patch) | |
tree | 49294299daf59edb299d93114e453a103da948a7 /gnu/usr.sbin | |
parent | 58ab6ec09fad80fac41913b2102e3aa35a17ccfb (diff) |
Install sendmail tuning guide
Diffstat (limited to 'gnu/usr.sbin')
-rw-r--r-- | gnu/usr.sbin/sendmail/sendmail/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/usr.sbin/sendmail/sendmail/Makefile b/gnu/usr.sbin/sendmail/sendmail/Makefile index 62c2ed9a785..0379ab86624 100644 --- a/gnu/usr.sbin/sendmail/sendmail/Makefile +++ b/gnu/usr.sbin/sendmail/sendmail/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2003/03/10 21:08:44 millert Exp $ +# $OpenBSD: Makefile,v 1.22 2003/08/13 23:36:33 millert Exp $ PROG= sendmail @@ -62,5 +62,11 @@ beforeinstall: ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g wheel -m 444 \ ${.CURDIR}/helpfile ${DESTDIR}/etc/mail/helpfile +afterinstall: + cmp -s ${.CURDIR}/TUNING ${DESTDIR}${SHAREDIR}/sendmail/TUNING || \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ + -m 444 ${.CURDIR}/TUNING ${DESTDIR}${SHAREDIR}/sendmail/TUNING ; \ + + .include "../../Makefile.inc" .include <bsd.prog.mk> |