diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-05-28 17:50:07 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-05-28 17:50:07 +0000 |
commit | 68579669dc11b908730b1cb3317c54bc9f642d44 (patch) | |
tree | 761bb6f395a453e6d5e9be60bd0acb24f763e49c /make | |
parent | c9fec39d9ee000cb259d06a3c213672a1583b03c (diff) | |
download | buildroot-novena-68579669dc11b908730b1cb3317c54bc9f642d44.tar.gz buildroot-novena-68579669dc11b908730b1cb3317c54bc9f642d44.zip |
uClibc has a working strtod. coreutils does _not_ have a working strtod
configuration test when cross compiling.
Diffstat (limited to 'make')
-rw-r--r-- | make/coreutils.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/make/coreutils.mk b/make/coreutils.mk index 825c0f354..bd09e5780 100644 --- a/make/coreutils.mk +++ b/make/coreutils.mk @@ -25,6 +25,7 @@ $(COREUTILS_DIR)/.configured: $(COREUTILS_DIR)/.unpacked (cd $(COREUTILS_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ + ac_cv_func_strtod=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ |