diff options
author | Wolfgang Denk <wd@denx.de> | 2012-03-12 15:00:23 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-12 15:00:23 +0100 |
commit | 6751b05f855bbe56005d5b88d4eb58bcd52170d2 (patch) | |
tree | 1099f67fa36adbe3341155b2b7dc6ac1582c808e /post | |
parent | e37ae40e9dec9af417c19de72f76becebf160730 (diff) |
Revert "post/Makefile: Only build FP post tests if enabled via CONFIG_SYS_POST_FPU"
This reverts commit 3e16abe0e468c568b30acb7d8583e3dbed6f177b.
The logic of this patch is broken - testing for CONFIG_SYS_POST_FPU in
the Makefile cannot work, as this is only a bit that may (or may not)
be set in the CONFIG_POST variable.
The patch cases build errors on a number of boards, so we revert it.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'post')
-rw-r--r-- | post/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post/Makefile b/post/Makefile index 55b7d211428..200e2f1b9ad 100644 --- a/post/Makefile +++ b/post/Makefile @@ -32,7 +32,7 @@ COBJS-$(CONFIG_POST_STD_LIST) += tests.o SPLIB-$(CONFIG_HAS_POST) = drivers/libpostdrivers.o SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d lib_$(ARCH) ]; then echo \ "lib_$(ARCH)/libpost$(ARCH).o"; fi) -SPLIB-$(CONFIG_SYS_POST_FPU) += $(shell if [ -d lib_$(ARCH)/fpu ]; then echo \ +SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d lib_$(ARCH)/fpu ]; then echo \ "lib_$(ARCH)/fpu/libpost$(ARCH)fpu.o"; fi) SPLIB-$(CONFIG_HAS_POST) += $(shell if [ -d cpu/$(CPU) ]; then echo \ "cpu/$(CPU)/libpost$(CPU).o"; fi) |