Don't compute MPATH during install.

This saves time when building over NFS.  Nothing should be building during
this phase anyhow.

Sponsored by:	Dell EMC Isilon
This commit is contained in:
Bryan Drewery 2017-01-17 21:12:21 +00:00
parent 640603fbf6
commit 751df7696a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312350

View File

@ -192,7 +192,7 @@ SYSTEM_LD_TAIL= @${OBJCOPY} --strip-symbol gcc2_compiled. ${.TARGET} ; \
SYSTEM_DEP+= ${LDSCRIPT}
# Calculate path for .m files early, if needed.
.if !defined(NO_MODULES) && !defined(__MPATH)
.if !defined(NO_MODULES) && !defined(__MPATH) && !make(install)
__MPATH!=find ${S:tA}/ -name \*_if.m
.endif