summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-06-30 23:51:50 +0000
committerMike Frysinger <vapier@gentoo.org>2005-06-30 23:51:50 +0000
commitde8b8b0b0bdd0f6012187dfc3046cac098000bb0 (patch)
treeb418a2a0473135332262a9724a5a72159555bcc3 /test
parent5869c64887d36cce64720f23892e5890ef099929 (diff)
dont try to run ldd if LDSO_LDD_SUPPORT is disabled in .config
Diffstat (limited to 'test')
-rw-r--r--test/Rules.mak8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/Rules.mak b/test/Rules.mak
index ed759c2a5..1c00bce6a 100644
--- a/test/Rules.mak
+++ b/test/Rules.mak
@@ -42,11 +42,15 @@ export TARGET_ARCH
# make CROSS=mipsel-linux-
# will build uClibc for 'mipsel'.
-CROSS =
+CROSS =
CC = $(CROSS)gcc
STRIPTOOL = strip
-LDD = $(TOPDIR)utils/ldd
RM = rm -f
+ifeq ($(LDSO_LDD_SUPPORT),y)
+LDD = $(TOPDIR)utils/ldd
+else
+LDD = @true
+endif
# Select the compiler needed to build binaries for your development system
HOSTCC = gcc