diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-21 19:11:35 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-21 19:11:35 +0000 |
commit | 71f9dbce23ed23b6e0c78eb500e1fa6fca7cb9cb (patch) | |
tree | 69cc156c0b3d3a8972e03dfd73108c159bf0be11 /shell | |
parent | 42ad3e4912abbd0d5ef2f6fdb52cf41fc009c86b (diff) | |
download | busybox-w32-71f9dbce23ed23b6e0c78eb500e1fa6fca7cb9cb.tar.gz busybox-w32-71f9dbce23ed23b6e0c78eb500e1fa6fca7cb9cb.tar.bz2 busybox-w32-71f9dbce23ed23b6e0c78eb500e1fa6fca7cb9cb.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.
git-svn-id: svn://busybox.net/trunk/busybox@14165 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/Makefile.in b/shell/Makefile.in index a2040995d..fcd93f345 100644 --- a/shell/Makefile.in +++ b/shell/Makefile.in | |||
@@ -17,7 +17,9 @@ SHELLT-$(CONFIG_LASH) += lash.o | |||
17 | SHELLT-$(CONFIG_MSH) += msh.o | 17 | SHELLT-$(CONFIG_MSH) += msh.o |
18 | SHELLT-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o | 18 | SHELLT-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o |
19 | 19 | ||
20 | ifneq ($(strip $(SHELLT-y)),) | ||
20 | libraries-y+=$(SHELL_DIR)$(SHELL_AR) | 21 | libraries-y+=$(SHELL_DIR)$(SHELL_AR) |
22 | endif | ||
21 | 23 | ||
22 | SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELLT-y)) | 24 | SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELLT-y)) |
23 | SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c) | 25 | SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c) |