diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-17 05:30:43 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-17 05:30:43 +0000 |
commit | 58903a0726aa2e7e2b8141772233752bffb6f0ec (patch) | |
tree | 1ba498f446866dfc20258e5c82493ac08e6d188c | |
parent | 595edd2276244fbbec6f08c99085a949c72a4ebe (diff) |
Patch from David McCullough <davidm@lineo.com> -- do not
try to build ldso when we don't support shared libraries...
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |