svn commit: r296400 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Mar 4 22:37:22 UTC 2016


Author: bdrewery
Date: Fri Mar  4 22:37:21 2016
New Revision: 296400
URL: https://svnweb.freebsd.org/changeset/base/296400

Log:
  DIRDEPS_BUILD: For bootstrapping always install all headers.
  
  There is no good way to guess if any of these will be needed but
  they commonly are and add no extra overhead so just stage them.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/local.dirdeps.mk

Modified: head/share/mk/local.dirdeps.mk
==============================================================================
--- head/share/mk/local.dirdeps.mk	Fri Mar  4 22:37:16 2016	(r296399)
+++ head/share/mk/local.dirdeps.mk	Fri Mar  4 22:37:21 2016	(r296400)
@@ -104,11 +104,20 @@ C_DIRDEPS= \
 	gnu/lib/csu \
 	gnu/lib/libgcc \
 	include \
+	include/arpa \
+	include/protocols \
+	include/rpc  \
+	include/rpcsvc \
 	include/xlocale \
 	lib/${CSU_DIR} \
 	lib/libc \
 	lib/libcompiler_rt \
 
+
+.if ${MK_GSSAPI} != "no"
+C_DIRDEPS+=  include/gssapi
+.endif
+
 .if !empty(SRCS:M*.c)
 DIRDEPS+= ${C_DIRDEPS}
 .endif


More information about the svn-src-head mailing list