summaryrefslogtreecommitdiff
path: root/libc/stdlib/Makefile.in
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-10-17 11:15:57 -0700
committerAustin Foxley <austinf@cetoncorp.com>2009-10-17 11:16:48 -0700
commit9b69fa33f016d8fd3c658fdcab70fa0700521752 (patch)
treeafe637f0095179551d4e49a66a8bc0033e85ea45 /libc/stdlib/Makefile.in
parent3b99917838650e2aa50d59a4f0e6365b090c5f89 (diff)
mktemp does not depend on floats
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/stdlib/Makefile.in')
-rw-r--r--libc/stdlib/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile.in b/libc/stdlib/Makefile.in
index eea0bb166..48ee5f227 100644
--- a/libc/stdlib/Makefile.in
+++ b/libc/stdlib/Makefile.in
@@ -33,9 +33,13 @@ endif
ifeq ($(UCLIBC_HAS_FLOATS),y)
CSRC += drand48.c drand48_r.c erand48.c erand48_r.c
ifeq ($(UCLIBC_SUSV3_LEGACY),y)
-CSRC += gcvt.c mktemp.c
+CSRC += gcvt.c
endif
endif
+ifeq ($(UCLIBC_SUSV3_LEGACY),y)
+CSRC += mktemp.c
+endif
+
# multi source stdlib.c
CSRC += abs.c labs.c atoi.c atol.c strtol.c strtoul.c _stdlib_strto_l.c \