Add ability to override sendmail .cf file specification.

Add creation of ppp.log file since we rotate it now.
This commit is contained in:
Paul Traina 1996-07-11 21:22:50 +00:00
parent bd5706a78a
commit 4ece9046e1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17104

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
# $Id: Makefile,v 1.136 1996/04/03 17:13:57 phk Exp $
# $Id: Makefile,v 1.137 1996/06/25 18:05:58 jkh Exp $
# -rw-r--r--
BINOWN= root
@ -31,6 +31,9 @@ COPYRIGHT= COPYRIGHT
FREEBSD=
FREEBSD+= ${COPYRIGHT}
# Sendmail configuration file for release
SENDMAILCF?= freebsd.cf
# Compatibility stuff, remove those links
LATIN1LINKS = \
da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES fi_FI \
@ -94,6 +97,8 @@ distribution:
${DESTDIR}/var/log/messages
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
${DESTDIR}/var/log/slip.log
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
${DESTDIR}/var/log/ppp.log
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/log/wtmp
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
@ -106,8 +111,8 @@ distribution:
${MAKE} install; \
cd ../cf/cf; \
${MAKE} objlink; \
${MAKE} freebsd.cf; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 obj/freebsd.cf \
${MAKE} ${SENDMAILCF}; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 obj/${SENDMAILCF} \
${DESTDIR}/etc/sendmail.cf)
(cd ${.CURDIR}/..; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FREEBSD} \