svn commit: trunk/uClibc

psm at uclibc.org psm at uclibc.org
Fri Oct 14 19:41:24 UTC 2005


Author: psm
Date: 2005-10-14 12:41:23 -0700 (Fri, 14 Oct 2005)
New Revision: 11862

Log:
Do not recurse into ldso if HAVE_SHARED is disabled.

Modified:
   trunk/uClibc/Makefile


Changeset:
Modified: trunk/uClibc/Makefile
===================================================================
--- trunk/uClibc/Makefile	2005-10-14 19:28:39 UTC (rev 11861)
+++ trunk/uClibc/Makefile	2005-10-14 19:41:23 UTC (rev 11862)
@@ -28,9 +28,13 @@
 TOPDIR=./
 include Rules.mak
 
-# need to have libc.so built, before we can build the others
-PRE_DIRS = ldso libc
-DIRS = ldso libcrypt libresolv libnsl libutil librt
+RTLD_DIR =
+ifeq ($(HAVE_SHARED),y)
+RTLD_DIR = ldso
+endif
+# need to have libc built, before we can build the others
+PRE_DIRS = $(RTLD_DIR) libc
+DIRS = $(RTLD_DIR) libcrypt libresolv libnsl libutil librt
 ifeq ($(UCLIBC_HAS_FLOATS),y)
 	DIRS += libm
 endif




More information about the uClibc-cvs mailing list