summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-11-22 06:51:17 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-11-22 06:51:17 +0000
commitdb7ad6ef0fdd95edad8942eacbdf75439de4034b (patch)
treeb499c41bc97d74c494b3fc732fb77fa94e3337d5 /utils
parent6ef2675511472c132fbff1e9121b86b004842b7a (diff)
Fix arm detection for libfloat.
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile2
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