From 58903a0726aa2e7e2b8141772233752bffb6f0ec Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 17 May 2001 05:30:43 +0000 Subject: Patch from David McCullough -- do not try to build ldso when we don't support shared libraries... --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b1d70a836..6a02cfb84 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,10 @@ TOPDIR=./ include Rules.mak -DIRS = extra ldso libc libcrypt libutil libm +ifeq ($(DO_SHARED),shared) + LDSO_DIR = ldso +endif +DIRS = extra $(LDSO_DIR) libc libcrypt libutil libm all: headers uClibc_config.h subdirs $(DO_SHARED) done -- cgit v1.2.3