META_MODE: Don't create obj directories automatically when running make -V.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2015-09-16 23:01:16 +00:00
parent 83981e319d
commit 8d4b8102d5

View File

@ -47,8 +47,11 @@ __DEFAULT_DEPENDENT_OPTIONS= \
.endif
.if ${MK_AUTO_OBJ} == "yes"
# This needs to be done early - before .PATH is computed
# Don't do this if just running make -V
.if ${.MAKEFLAGS:M-V} == ""
.sinclude <auto.obj.mk>
.endif
.endif
.endif