diff options
author | Rob Landley <rob@landley.net> | 2006-02-21 19:11:35 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-21 19:11:35 +0000 |
commit | d6e14d8beebb5c9571bded30df6568570f0c2a54 (patch) | |
tree | 69cc156c0b3d3a8972e03dfd73108c159bf0be11 /networking | |
parent | 6f2a0b22754f1ad85204018491b8ad356a546f0e (diff) | |
download | busybox-d6e14d8beebb5c9571bded30df6568570f0c2a54.tar.gz |
Don't build directory libraries unless we're building an applet that needs it.
Cherry-picked from Devin Bayer's big MacOS X patch.
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Makefile.in | 2 | ||||
-rw-r--r-- | networking/udhcp/Makefile.in | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/networking/Makefile.in b/networking/Makefile.in index a07af7abd..650fc1a4a 100644 --- a/networking/Makefile.in +++ b/networking/Makefile.in @@ -44,7 +44,9 @@ NETWORKING-$(CONFIG_WGET) += wget.o NETWORKING-$(CONFIG_ZCIP) += zcip.o NETWORKING-y:=$(sort $(NETWORKING-y)) +ifneq ($(strip $(NETWORKING-y)),) libraries-y+=$(NETWORKING_DIR)$(NETWORKING_AR) +endif NETWORKING_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(NETWORKING-y)) NETWORKING_SRC-a:=$(wildcard $(srcdir)/*.c) diff --git a/networking/udhcp/Makefile.in b/networking/udhcp/Makefile.in index c9e0f5b89..df32247c6 100644 --- a/networking/udhcp/Makefile.in +++ b/networking/udhcp/Makefile.in @@ -32,7 +32,9 @@ UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c \ UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) +ifneq ($(strip $(UDHCP-y)),) libraries-y+=$(UDHCP_DIR)$(UDHCP_AR) +endif UDHCP-y:=$(patsubst %,$(srcdir)/%,$(UDHCP-y)) UDHCP-a:=$(wildcard $(srcdir)/*.c) |