diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-12-05 18:10:37 -0500 |
---|---|---|
committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-12-05 23:44:41 +0000 |
commit | 615bd655e51880054e349ae9a2dc099773df1a07 (patch) | |
tree | d3f7f229e0729a56f67f2ba8c6e923fcfd885fbf /tests/unit/libutil-support | |
parent | 211b6e18556e03829ae7bba38c7272af2900a2e8 (diff) |
Add missing `-pthread` for test support libraries
This is good in general (see how the other libraries also have long had
it, since 49fe9592a47e7819179c2de4fd6068e897e944c7) but in particular
needed to fix the NetBSD build.
(cherry picked from commit b23273f6a29c725646b3523b1c35a0ae4a84ef61)
Diffstat (limited to 'tests/unit/libutil-support')
-rw-r--r-- | tests/unit/libutil-support/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/libutil-support/local.mk b/tests/unit/libutil-support/local.mk index d085eda4e..b4c8f2475 100644 --- a/tests/unit/libutil-support/local.mk +++ b/tests/unit/libutil-support/local.mk @@ -12,4 +12,4 @@ libutil-test-support_CXXFLAGS += $(libutil-tests_EXTRA_INCLUDES) libutil-test-support_LIBS = libutil -libutil-test-support_LDFLAGS := -lrapidcheck +libutil-test-support_LDFLAGS := -pthread -lrapidcheck |