summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFilippo Arcidiacono <filippo.arcidiacono@st.com>2009-12-09 16:24:46 +0100
committerCarmelo Amoroso <carmelo.amoroso@st.com>2009-12-09 16:30:22 +0100
commit6ae3f8363f4ceac618c3b85a65e7c05e7c00076b (patch)
tree7d42afe7773b8a3b7dc52203c101e20df56864fa /test
parent07626f0253be2ec7db861b3258ff02824d491ac6 (diff)
test_dlopen: Remove extra -lpthread from LD_FLAGS for dltest{2}
dltest and dltest2 do not refer any symbols implemented in pthread library, so do not explicitly link them with pthread. It is required only for the shared objects that are loaded via dlopen by those tests. Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'test')
-rw-r--r--test/dlopen/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dlopen/Makefile.in b/test/dlopen/Makefile.in
index 5d4d2fb36..22190d9f9 100644
--- a/test/dlopen/Makefile.in
+++ b/test/dlopen/Makefile.in
@@ -10,8 +10,8 @@ CFLAGS_dltest := -DLIBNAME="\"./libtest.so\""
CFLAGS_dltest2 := -DLIBNAME="\"./libtest3.so\""
LDFLAGS_dlstatic := -ldl
-LDFLAGS_dltest := -ldl -lpthread
-LDFLAGS_dltest2 := -ldl -lpthread
+LDFLAGS_dltest := -ldl
+LDFLAGS_dltest2 := -ldl
LDFLAGS_dlundef := -ldl
LDFLAGS_dlafk := -ldl ./libafk.so -Wl,-rpath,.
LDFLAGS_test1 := -ldl