From d6e14d8beebb5c9571bded30df6568570f0c2a54 Mon Sep 17 00:00:00 2001 From: Rob 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. --- 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