aboutsummaryrefslogtreecommitdiff
path: root/networking/Makefile.in
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-02-21 19:11:35 +0000
committerRob Landley <rob@landley.net>2006-02-21 19:11:35 +0000
commitd6e14d8beebb5c9571bded30df6568570f0c2a54 (patch)
tree69cc156c0b3d3a8972e03dfd73108c159bf0be11 /networking/Makefile.in
parent6f2a0b22754f1ad85204018491b8ad356a546f0e (diff)
downloadbusybox-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/Makefile.in')
-rw-r--r--networking/Makefile.in2
1 files changed, 2 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)