[uClibc-cvs] svn commit: trunk/uClibc/test

vapier at uclibc.org vapier at uclibc.org
Thu Jun 30 23:45:46 UTC 2005


Author: vapier
Date: 2005-06-30 17:45:45 -0600 (Thu, 30 Jun 2005)
New Revision: 10658

Log:
fix ALL_SUBDIRS/DIRS setting so clean always kills everything

Modified:
   trunk/uClibc/test/Makefile


Changeset:
Modified: trunk/uClibc/test/Makefile
===================================================================
--- trunk/uClibc/test/Makefile	2005-06-30 23:40:40 UTC (rev 10657)
+++ trunk/uClibc/test/Makefile	2005-06-30 23:45:45 UTC (rev 10658)
@@ -21,20 +21,21 @@
 
 .EXPORT_ALL_VARIABLES:
 
+
 ALL_SUBDIRS = \
 	args assert crypt ctype pwd_grp signal silly stdlib string unistd \
 	#misc
-DIRS = $(ALL_SUBDIRS)
+DIRS := $(ALL_SUBDIRS)
 
-ifeq ($(HAVE_SHARED),y)
-	ifeq ($(BUILD_UCLIBC_LDSO),y)
-		DIRS += dlopen
-	endif
+ifeq ($(HAVE_SHARED)$(BUILD_UCLIBC_LDSO),yy)
+	DIRS += dlopen
 endif
 ifeq ($(UCLIBC_HAS_THREADS),y)
 	DIRS += pthread
 endif
+ALL_SUBDIRS += pthread dlopen
 
+
 all: subdirs
 
 tags:




More information about the uClibc-cvs mailing list