summaryrefslogtreecommitdiffstats
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:31:36 +0100
commitd67f6eb3ff53bdced973fa4e8386edf092fec2e1 (patch)
tree4df07ff9733caa6358d3116b7e88caf46759193e
parentc5c2cf0da5644c96a2ae3db315f51bf91f15723d (diff)
downloaduClibc-alpine-d67f6eb3ff53bdced973fa4e8386edf092fec2e1.tar.bz2
uClibc-alpine-d67f6eb3ff53bdced973fa4e8386edf092fec2e1.tar.xz
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>
-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