Browse Source

Fix arm detection for libfloat.

Manuel Novoa III 21 years ago
parent
commit
db7ad6ef0f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/Makefile

+ 1 - 1
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