From: Manuel Novoa III Date: Fri, 21 Nov 2003 02:28:21 +0000 (-0000) Subject: Fix some soft float make variables. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2192a03c9166daf7fb1648a03846c62b36184275;p=buildroot.git Fix some soft float make variables. --- diff --git a/Makefile b/Makefile index a4cda2b0f1..19bb5eb91c 100644 --- a/Makefile +++ b/Makefile @@ -199,15 +199,13 @@ TARGETS+=ext2root # what you are doing. # ############################################################# -ifeq ("$(strip $(TARGET_SOFT_FLOAT))","") -ARCH_FPU_SUFFIX:= -else -ARCH_FPU_SUFFIX:=_nofpu -endif ifeq ($(SOFT_FLOAT),true) SOFT_FLOAT_CONFIG_OPTION=--without-float TARGET_SOFT_FLOAT=-msoft-float +ARCH_FPU_SUFFIX:=_nofpu +else +ARCH_FPU_SUFFIX:= endif ifeq ($(ENABLE_LOCALE),true)