diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-10-22 22:29:08 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-10-22 22:29:08 +0000 |
commit | 2448122b9421da1fde152e604892cde530211b1c (patch) | |
tree | 149482e23c0ce2a622e45a56e5869e80b4b8361b /miscutils/Makefile.in | |
parent | 3e1d6a99ef82cf4bd8aba1e77ad45c0c958506aa (diff) | |
download | busybox-w32-2448122b9421da1fde152e604892cde530211b1c.tar.gz busybox-w32-2448122b9421da1fde152e604892cde530211b1c.tar.bz2 busybox-w32-2448122b9421da1fde152e604892cde530211b1c.zip |
the dc applet now needs libm
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@7706 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | miscutils/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/miscutils/Makefile.in b/miscutils/Makefile.in index 892f7d196..773f55890 100644 --- a/miscutils/Makefile.in +++ b/miscutils/Makefile.in | |||
@@ -39,6 +39,13 @@ MISCUTILS-$(CONFIG_WATCHDOG) += watchdog.o | |||
39 | 39 | ||
40 | libraries-y+=$(MISCUTILS_DIR)$(MISCUTILS_AR) | 40 | libraries-y+=$(MISCUTILS_DIR)$(MISCUTILS_AR) |
41 | 41 | ||
42 | needlibm-y:= | ||
43 | needlibm-$(CONFIG_DC) := y | ||
44 | |||
45 | ifeq ($(needlibm-y),y) | ||
46 | LIBRARIES += -lm | ||
47 | endif | ||
48 | |||
42 | $(MISCUTILS_DIR)$(MISCUTILS_AR): $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y)) | 49 | $(MISCUTILS_DIR)$(MISCUTILS_AR): $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y)) |
43 | $(AR) -ro $@ $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y)) | 50 | $(AR) -ro $@ $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y)) |
44 | 51 | ||