aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2020-04-25 20:24:41 +0000
committerDimitry Andric <dim@FreeBSD.org>2020-04-25 20:24:41 +0000
commit61fbd61b59e7a6fc70a588c0fe1dad69aee30aba (patch)
tree4209309bdcde5842e52bbdf5641c65ac587a3366 /Makefile.inc1
parent56005e4b715acc77407bfb6f6820fc9f75b633d1 (diff)
downloadsrc-61fbd61b59e7a6fc70a588c0fe1dad69aee30aba.tar.gz
src-61fbd61b59e7a6fc70a588c0fe1dad69aee30aba.zip
Fix race between prebuilding libsbuf and libgeom
The latter needs the former, but with a multi-job build on a fast machine, the race is sometimes lost. This leads to "ld: error: unable to find library -lsbuf", when linking libgeom.so. Submitted by: kevans MFC after: 3 days
Notes
Notes: svn path=/head/; revision=360322
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc12
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index f005aea9f403..a303bc9d4aa6 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -2760,7 +2760,7 @@ gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
_prebuild_libs+= lib/libc++
.endif
-lib/libgeom__L: lib/libexpat__L
+lib/libgeom__L: lib/libexpat__L lib/libsbuf__L
lib/libkvm__L: lib/libelf__L
.if ${MK_LIBTHR} != "no"