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 /miscutils | |
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 'miscutils')
-rw-r--r-- | miscutils/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miscutils/Makefile.in b/miscutils/Makefile.in index 9a45b2f82..2c651d33b 100644 --- a/miscutils/Makefile.in +++ b/miscutils/Makefile.in | |||
@@ -31,7 +31,9 @@ MISCUTILS-$(CONFIG_STRINGS) += strings.o | |||
31 | MISCUTILS-$(CONFIG_TIME) += time.o | 31 | MISCUTILS-$(CONFIG_TIME) += time.o |
32 | MISCUTILS-$(CONFIG_WATCHDOG) += watchdog.o | 32 | MISCUTILS-$(CONFIG_WATCHDOG) += watchdog.o |
33 | 33 | ||
34 | ifneq ($(strip $(MISCUTILS-y)),) | ||
34 | libraries-y+=$(MISCUTILS_DIR)$(MISCUTILS_AR) | 35 | libraries-y+=$(MISCUTILS_DIR)$(MISCUTILS_AR) |
36 | endif | ||
35 | 37 | ||
36 | MISCUTILS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(MISCUTILS-y)) | 38 | MISCUTILS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(MISCUTILS-y)) |
37 | MISCUTILS_SRC-a:=$(wildcard $(srcdir)/*.c) | 39 | MISCUTILS_SRC-a:=$(wildcard $(srcdir)/*.c) |