diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-22 06:51:17 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-22 06:51:17 +0000 |
commit | db7ad6ef0fdd95edad8942eacbdf75439de4034b (patch) | |
tree | b499c41bc97d74c494b3fc732fb77fa94e3337d5 | |
parent | 6ef2675511472c132fbff1e9121b86b004842b7a (diff) |
Fix arm detection for libfloat.
-rw-r--r-- | utils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile index 008a33f36..d339c8dc5 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -82,7 +82,7 @@ LDADD_LIBFLOAT= ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y) CFLAGS += $(call check_gcc,-msoft-float,) #LDFLAGS+= -Wa,-mno-fpu -ifeq ($(strip $(TARGET_ARCH)),arm) +ifeq ($(strip $(TARGET_ARCH)),"arm") LDADD_LIBFLOAT=-lfloat endif endif |