Don't create a Makefile.depend in share/mk.

This would cause it to be included everywhere in the build since it is
the MAKESYSPATH.  This leads to including dirdeps.mk more times than
desired.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2015-12-04 03:17:10 +00:00
parent 249f51a492
commit 568f2ee158
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291733
2 changed files with 5 additions and 11 deletions

View file

@ -6,6 +6,11 @@
# will read this Makefile since it auto includes it into -I.
.if ${.CURDIR} == ${.PARSEDIR}
# Avoid creating a Makefile.depend here as it would get included anywhere
# in the build, similar to the problem above. It would cause dirdeps.mk
# to be included more times than desired.
UPDATE_DEPENDFILE= no
.include <src.opts.mk>
FILES= \

View file

@ -1,11 +0,0 @@
# $FreeBSD$
# Autogenerated - do NOT edit!
DIRDEPS = \
.include <dirdeps.mk>
.if ${DEP_RELDIR} == ${_DEP_RELDIR}
# local dependencies - needed for -jN in clean tree
.endif