diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-21 02:28:21 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-21 02:28:21 +0000 |
commit | 2192a03c9166daf7fb1648a03846c62b36184275 (patch) | |
tree | 1361d987a9335f1c3d143dd115dbfdfbe0de7ecf | |
parent | ec2faf7df9f5f733667c77c132a0e5d76fd9c893 (diff) | |
download | buildroot-novena-2192a03c9166daf7fb1648a03846c62b36184275.tar.gz buildroot-novena-2192a03c9166daf7fb1648a03846c62b36184275.zip |
Fix some soft float make variables.
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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) |