svn commit: r348877 - head/share/mk
Bryan Drewery
bdrewery at FreeBSD.org
Mon Jun 10 19:38:36 UTC 2019
Author: bdrewery
Date: Mon Jun 10 19:38:35 2019
New Revision: 348877
URL: https://svnweb.freebsd.org/changeset/base/348877
Log:
DPSRCS need to be built before recursing.
MFC after: 2 weeks
Sponsored by: DellEMC
Modified:
head/share/mk/bsd.progs.mk
Modified: head/share/mk/bsd.progs.mk
==============================================================================
--- head/share/mk/bsd.progs.mk Mon Jun 10 19:26:57 2019 (r348876)
+++ head/share/mk/bsd.progs.mk Mon Jun 10 19:38:35 2019 (r348877)
@@ -95,7 +95,7 @@ $v =
# Find common sources among the PROGS to depend on them before building
# anything. This allows parallelization without them each fighting over
# the same objects.
-_PROGS_COMMON_SRCS=
+_PROGS_COMMON_SRCS= ${DPSRCS}
_PROGS_ALL_SRCS=
.for p in ${PROGS}
.for s in ${SRCS.${p}}
More information about the svn-src-all
mailing list