svn commit: r312350 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Tue Jan 17 21:12:22 UTC 2017


Author: bdrewery
Date: Tue Jan 17 21:12:21 2017
New Revision: 312350
URL: https://svnweb.freebsd.org/changeset/base/312350

Log:
  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

Modified:
  head/sys/conf/kern.pre.mk

Modified: head/sys/conf/kern.pre.mk
==============================================================================
--- head/sys/conf/kern.pre.mk	Tue Jan 17 19:19:29 2017	(r312349)
+++ head/sys/conf/kern.pre.mk	Tue Jan 17 21:12:21 2017	(r312350)
@@ -192,7 +192,7 @@ SYSTEM_LD_TAIL= @${OBJCOPY} --strip-symb
 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
 


More information about the svn-src-all mailing list