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
This commit is contained in:
bdrewery 2016-03-04 22:37:21 +00:00
parent 179ee8e307
commit 325284497c

View File

@ -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