Browse Source

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>
Bernhard Reutner-Fischer 15 years ago
parent
commit
268f276bca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/dlopen/Makefile

+ 1 - 1
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