Avoid breaking crunchgen with meta stats

When using DIRDEPS_BUILD we normally get stats as each dir finishes.
This upsets crunchen, so keep quiet when _RECURSING_CRUNCH is defined
This commit is contained in:
Simon J. Gerraty 2023-04-18 20:25:33 -07:00
parent 901efd8bb9
commit a6bd50f712

View file

@ -29,3 +29,8 @@ CLEANFILES+= .depend
@${CXX} -E ${CXXFLAGS} ${.IMPSRC} | grep -v '^[[:space:]]*$$'
.-include <site.autodep.mk>
.ifdef _RECURSING_CRUNCH
# crunchgen does not want to see our stats
_reldir_finish: .NOTMAIN
.endif