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

vapier at uclibc.org vapier at uclibc.org
Thu Jun 30 23:51:50 UTC 2005


Author: vapier
Date: 2005-06-30 17:51:50 -0600 (Thu, 30 Jun 2005)
New Revision: 10663

Log:
dont try to run ldd if LDSO_LDD_SUPPORT is disabled in .config

Modified:
   trunk/uClibc/test/Rules.mak


Changeset:
Modified: trunk/uClibc/test/Rules.mak
===================================================================
--- trunk/uClibc/test/Rules.mak	2005-06-30 23:51:16 UTC (rev 10662)
+++ trunk/uClibc/test/Rules.mak	2005-06-30 23:51:50 UTC (rev 10663)
@@ -42,11 +42,15 @@
 #        make CROSS=mipsel-linux-
 # will build uClibc for 'mipsel'.
 
-CROSS      =
+CROSS      = 
 CC         = $(CROSS)gcc
 STRIPTOOL  = strip
+RM         = rm -f
+ifeq ($(LDSO_LDD_SUPPORT),y)
 LDD        = $(TOPDIR)utils/ldd
-RM         = rm -f
+else
+LDD        = @true
+endif
 
 # Select the compiler needed to build binaries for your development system
 HOSTCC     = gcc




More information about the uClibc-cvs mailing list