From 0c8934a1258302f8153172c54a062129405f1116 Mon Sep 17 00:00:00 2001 From: Christian Babeux Date: Thu, 29 Nov 2012 10:58:15 -0500 Subject: [PATCH] Fix: Remove dependency to urcu-cds in tools tests The -lurcu-cds link flag is not mandatory to link any of the tests. Also, adding this flag can cause multiple symbol definition errors when linking statically because the libhashtable contains symbol names that are also present in urcu-cds. Signed-off-by: Christian Babeux --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 8dd05a4f0..cc6d9ff27 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,7 +1,7 @@ SUBDIRS = . AM_CFLAGS = -g -Wall -AM_LDFLAGS = -lurcu -lurcu-cds +AM_LDFLAGS = -lurcu EXTRA_DIST = runall.sh utils.sh lttng/runall.sh lttng/run-kernel-tests.sh -- 2.34.1