summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-11-18 16:02:54 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-11-19 16:21:40 +0100
commitf367fb75db96fbbe06b5a1795879609aa031945f (patch)
tree28800e435f412d8fc9a2b25babcab124614aae47
parente44670f61784fe97b8e04008971a9467392ac3d6 (diff)
downloaduClibc-alpine-f367fb75db96fbbe06b5a1795879609aa031945f.tar.bz2
uClibc-alpine-f367fb75db96fbbe06b5a1795879609aa031945f.tar.xz
Look at HAVE_SHARED
We do not have UCLIBC_STATIC (anymore) but !HAVE_SHARED Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--test/dlopen/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dlopen/Makefile b/test/dlopen/Makefile
index 66a2452e2..92d14b90e 100644
--- a/test/dlopen/Makefile
+++ b/test/dlopen/Makefile
@@ -4,7 +4,7 @@
top_builddir=../../
include ../Rules.mak
-include Makefile.in
-ifeq ($(UCLIBC_STATIC),y)
+ifneq ($(HAVE_SHARED),y)
TESTS_DISABLED := test3
LDFLAGS_libtest.so := -lpthread
endif