summaryrefslogtreecommitdiff
path: root/test/dlopen
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-11-18 16:02:54 +0100
committerAustin Foxley <austinf@cetoncorp.com>2009-11-22 11:05:52 -0800
commit268f276bcadfe4d1a715058fa4c6f9ec6c393580 (patch)
tree26135d08d01a54dc1c3e55eb12b810c5be596af4 /test/dlopen
parentbb8a3f00cfa3913c7f360f2fc601b9315cb5474a (diff)
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> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'test/dlopen')
-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