diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-18 23:49:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-18 23:49:13 +0000 |
commit | ab27802e190c714b28d0490407abeec6c26594a7 (patch) | |
tree | 6fb82adf7bca9c6ab6b5259edccd0f898065822c /libm | |
parent | c6bb70417ea9c5d2f7edb39037a36a83f2ad7adf (diff) |
change HAS_FPU to UCLIBC_HAS_FPU since the define will be exported into C namespace
Diffstat (limited to 'libm')
-rw-r--r-- | libm/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/Makefile.in b/libm/Makefile.in index 19211f5ff..fa9429165 100644 --- a/libm/Makefile.in +++ b/libm/Makefile.in @@ -33,7 +33,7 @@ LIBS-libm.so := $(LIBS) libm_FULL_NAME := libm-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so -ifeq ($(HAS_FPU),y) +ifeq ($(UCLIBC_HAS_FPU),y) -include $(top_srcdir)libm/$(TARGET_ARCH)/Makefile.arch endif @@ -84,7 +84,7 @@ libm_DIR := $(top_srcdir)libm libm_OUT := $(top_builddir)libm # assume that arch specific versions are provided as single sources/objects -ifeq ($(HAS_FPU),y) +ifeq ($(UCLIBC_HAS_FPU),y) ifneq ($(strip $(libm_ARCH_OBJS)),) # remove generic sources, if arch specific version is present |