diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-03-11 23:45:28 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-03-11 23:45:28 +0000 |
commit | b7d28aff1009ed31d870976928b60328bf585d07 (patch) | |
tree | 37e447dacda2e5ea234551343f02afffa679865c /share/sendmail/Makefile | |
parent | bd08afe1c93546441a7b2a7a366579959f098940 (diff) | |
download | src-b7d28aff1009ed31d870976928b60328bf585d07.tar.gz src-b7d28aff1009ed31d870976928b60328bf585d07.zip |
META_MODE: Simplify the META_COOKIE handling to use .USE/.USEBEFORE.
Extend it to other cases of meta mode cookies so they get the proper rm
cookie behavior when a .meta file detects it needs to rebuild and fails.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=296700
Diffstat (limited to 'share/sendmail/Makefile')
-rw-r--r-- | share/sendmail/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/share/sendmail/Makefile b/share/sendmail/Makefile index c8dee5a3f56a..9ec23f2030dd 100644 --- a/share/sendmail/Makefile +++ b/share/sendmail/Makefile @@ -16,10 +16,9 @@ SHARED?= copies all clean cleandir depend lint tags: beforeinstall: ${SHARED} -META_COOKIES+= copies symlinks +META_TARGETS+= copies symlinks -copies: - ${META_COOKIE_RM} +copies: ${META_DEPS} if [ -L ${DDIR}/${CFDIR} ]; then rm -f ${DDIR}/${CFDIR}; fi .for dir in ${CFDIRS} ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 -d ${DDIR}/${dir} @@ -27,11 +26,8 @@ copies: .for file in ${CFFILES} ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 ${SENDMAIL_DIR}/${file} ${DDIR}/${file} .endfor - ${META_COOKIE_TOUCH} -symlinks: - ${META_COOKIE_RM} +symlinks: ${META_DEPS} rm -rf ${DDIR}/${CFDIR}; ln -s ${SENDMAIL_DIR}/${CFDIR} ${DDIR}/${CFDIR} - ${META_COOKIE_TOUCH} .include <bsd.prog.mk> |