svn commit: branches/uClibc-nptl/test

sjhill at uclibc.org sjhill at uclibc.org
Sat Oct 29 19:09:07 UTC 2005


Author: sjhill
Date: 2005-10-29 12:09:05 -0700 (Sat, 29 Oct 2005)
New Revision: 11987

Log:
Do not add entries: pthread, dlopen, tls to ALL_SUBDIRS unless thos
features are actually enabled. Add 'tls' as a new test suite in the
Makefile.


Modified:
   branches/uClibc-nptl/test/Makefile


Changeset:
Modified: branches/uClibc-nptl/test/Makefile
===================================================================
--- branches/uClibc-nptl/test/Makefile	2005-10-29 18:46:49 UTC (rev 11986)
+++ branches/uClibc-nptl/test/Makefile	2005-10-29 19:09:05 UTC (rev 11987)
@@ -29,11 +29,16 @@
 
 ifeq ($(HAVE_SHARED)$(BUILD_UCLIBC_LDSO),yy)
 	DIRS += dlopen
+ALL_SUBDIRS  += dlopen
 endif
 ifeq ($(UCLIBC_HAS_THREADS),y)
 	DIRS += pthread
+ALL_SUBDIRS  += pthread
 endif
-ALL_SUBDIRS += pthread dlopen
+ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
+	DIRS += tls
+ALL_SUBDIRS  += tls
+endif
 
 
 all: subdirs




More information about the uClibc-cvs mailing list