From 997ffab7c060f6116469c088d7a04611012a8e3f Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Wed, 15 Jun 2016 23:58:09 +0000 Subject: [PATCH] Mark targets with _SUBDIR as .PHONY. This is mostly fixing META_MODE with realinstall wanting a .meta file when it does not need one. These targets really should always run though since they have _SUBDIR on them. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division --- share/mk/bsd.subdir.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.subdir.mk b/share/mk/bsd.subdir.mk index f1b09708d567..504ef3f6a3dc 100644 --- a/share/mk/bsd.subdir.mk +++ b/share/mk/bsd.subdir.mk @@ -158,9 +158,9 @@ ${__target}_subdir_${DIRPRFX}${__dir}: .PHONY .MAKE .SILENT ${__deps} ${_SUBDIR_SH}; .endif .endfor # __dir in ${SUBDIR} -${__target}: ${__subdir_targets} +${__target}: ${__subdir_targets} .PHONY .else -${__target}: _SUBDIR +${__target}: _SUBDIR .PHONY .endif # SUBDIR_PARALLEL || _is_standalone_target .endif # make(${__target}) .endfor # __target in ${SUBDIR_TARGETS}