mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
Since buildworld builds cf files specified in SENDMAIL_ADDITIONAL_MC,
installworld should install them. PR: 29928 Submitted by: wollman MFC after: 3 days
This commit is contained in:
parent
74cc11c2df
commit
c8e968571f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86639
@ -42,7 +42,8 @@ ALL+= ${INSTALL_CF}
|
||||
|
||||
# Additional .cf files to build
|
||||
.if defined(SENDMAIL_ADDITIONAL_MC)
|
||||
ALL+= ${SENDMAIL_ADDITIONAL_MC:S/.mc$/.cf/g}
|
||||
SENDMAIL_ADDITIONAL_CF= ${SENDMAIL_ADDITIONAL_MC:S/.mc$/.cf/g}
|
||||
ALL+= ${SENDMAIL_ADDITIONAL_CF}
|
||||
.endif
|
||||
|
||||
CLEANFILES+= ${ALL}
|
||||
@ -61,6 +62,10 @@ install: ${INSTALL_CF}
|
||||
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 644 ${INSTALL_CF} \
|
||||
${DEST_CF}
|
||||
.endif
|
||||
.if defined(SENDMAIL_ADDITIONAL_CF)
|
||||
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 644 \
|
||||
${SENDMAIL_ADDITIONAL_CF} ${DESTDIR}/etc/mail
|
||||
.endif
|
||||
.endif
|
||||
|
||||
# Helper for src/etc/Makefile
|
||||
|
Loading…
Reference in New Issue
Block a user