Move sendmail special check into a _sanity_check target.

MFC after:	2 weeks
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Bryan Drewery 2017-10-29 01:20:43 +00:00
parent 7e7315b542
commit 5e3b906168

View File

@ -752,7 +752,7 @@ KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
# Attempt to rebuild the entire system, with reasonable chance of # Attempt to rebuild the entire system, with reasonable chance of
# success, regardless of how old your existing system is. # success, regardless of how old your existing system is.
# #
_worldtmp: .PHONY _sanity_check: .PHONY
.if ${.CURDIR:C/[^,]//g} != "" .if ${.CURDIR:C/[^,]//g} != ""
# The m4 build of sendmail files doesn't like it if ',' is used # The m4 build of sendmail files doesn't like it if ',' is used
# anywhere in the path of it's files. # anywhere in the path of it's files.
@ -761,6 +761,8 @@ _worldtmp: .PHONY
@echo @echo
false false
.endif .endif
_worldtmp: .PHONY
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> Rebuilding the temporary build tree" @echo ">>> Rebuilding the temporary build tree"
@ -957,7 +959,7 @@ everything: .PHONY
WMAKE_TGTS= WMAKE_TGTS=
.if !defined(WORLDFAST) .if !defined(WORLDFAST)
WMAKE_TGTS+= _worldtmp _legacy WMAKE_TGTS+= _sanity_check _worldtmp _legacy
.if empty(SUBDIR_OVERRIDE) .if empty(SUBDIR_OVERRIDE)
WMAKE_TGTS+= _bootstrap-tools WMAKE_TGTS+= _bootstrap-tools
.endif .endif