From 71f9dbce23ed23b6e0c78eb500e1fa6fca7cb9cb Mon Sep 17 00:00:00 2001 From: landley Date: Tue, 21 Feb 2006 19:11:35 +0000 Subject: Don't build directory libraries unless we're building an applet that needs it. Cherry-picked from Devin Bayer's big MacOS X patch. git-svn-id: svn://busybox.net/trunk/busybox@14165 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/Makefile.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'coreutils') diff --git a/coreutils/Makefile.in b/coreutils/Makefile.in index 4e7b7bd20..2ab256c15 100644 --- a/coreutils/Makefile.in +++ b/coreutils/Makefile.in @@ -82,7 +82,11 @@ COREUTILS-$(CONFIG_WHOAMI) += whoami.o COREUTILS-$(CONFIG_YES) += yes.o COREUTILS-y:=$(sort $(COREUTILS-y)) + +ifneq ($(strip $(COREUTILS-y)),) libraries-y+=$(COREUTILS_DIR)$(COREUTILS_AR) +endif + COREUTILS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(COREUTILS-y)) COREUTILS_SRC-a:=$(wildcard $(srcdir)/*.c) APPLET_SRC-y+=$(COREUTILS_SRC-y) -- cgit v1.2.3-55-g6feb