Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-10-23 02:29:08 +0400
committerEric Andersen <andersen@codepoet.org>2003-10-23 02:29:08 +0400
commit2053a8c74747fcbfb7f4836ee71d6775ac7c4a25 (patch)
tree149482e23c0ce2a622e45a56e5869e80b4b8361b /miscutils
parente78fe2414b14ba67e514384f5c100e1fb867bfb6 (diff)
the dc applet now needs libm
-Erik
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/Makefile.in7
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
libraries-y+=$(MISCUTILS_DIR)$(MISCUTILS_AR)
+needlibm-y:=
+needlibm-$(CONFIG_DC) := y
+
+ifeq ($(needlibm-y),y)
+ LIBRARIES += -lm
+endif
+
$(MISCUTILS_DIR)$(MISCUTILS_AR): $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y))
$(AR) -ro $@ $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y))