invoke _cleanobj_fast_depend_hack unconditionally

Apparently make ${CLEANDIR} is leaving stale entries in .depend files;
for now invoke the hacky cleanup in both the -DNO_CLEAN and normal
(no -DNO_CLEAN) cases.

In collaboration with:	dim
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2020-03-18 20:12:46 +00:00
parent cd675bb60e
commit 0d02682c96
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359083

View File

@ -1082,9 +1082,10 @@ _cleanobj:
.if defined(_LIBCOMPAT)
${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} _NO_INCLUDE_COMPILERMK=t -f Makefile.inc1 ${CLEANDIR}
.endif
.else
${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack
.endif # !defined(NO_CLEAN)
# XXX make cleandir left stale .depend files behind, so invoke the
# dependency cleanup hack unconditionally.
${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack
_obj:
@echo
@echo "--------------------------------------------------------------"