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/udhcp | |
parent | 6f2a0b22754f1ad85204018491b8ad356a546f0e (diff) | |
download | busybox-w32-d6e14d8beebb5c9571bded30df6568570f0c2a54.tar.gz busybox-w32-d6e14d8beebb5c9571bded30df6568570f0c2a54.tar.bz2 busybox-w32-d6e14d8beebb5c9571bded30df6568570f0c2a54.zip |
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/udhcp')
-rw-r--r-- | networking/udhcp/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
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 \ | |||
32 | UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c | 32 | UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c |
33 | UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) | 33 | UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) |
34 | 34 | ||
35 | ifneq ($(strip $(UDHCP-y)),) | ||
35 | libraries-y+=$(UDHCP_DIR)$(UDHCP_AR) | 36 | libraries-y+=$(UDHCP_DIR)$(UDHCP_AR) |
37 | endif | ||
36 | 38 | ||
37 | UDHCP-y:=$(patsubst %,$(srcdir)/%,$(UDHCP-y)) | 39 | UDHCP-y:=$(patsubst %,$(srcdir)/%,$(UDHCP-y)) |
38 | UDHCP-a:=$(wildcard $(srcdir)/*.c) | 40 | UDHCP-a:=$(wildcard $(srcdir)/*.c) |