diff options
author | Wolfgang Denk <wd@denx.de> | 2011-03-31 16:26:29 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-03-31 23:38:16 +0200 |
commit | 3b258e2e58d7b5f45e03681b00df64fc8a61e9c1 (patch) | |
tree | ed6383c4cdf87117b0760e2f267fac194b1cb320 /nand_spl/board/freescale/mpc8572ds/Makefile | |
parent | b12fee010cff9738735e0f213205906ff68aead8 (diff) | |
download | u-boot-midas-3b258e2e58d7b5f45e03681b00df64fc8a61e9c1.tar.gz u-boot-midas-3b258e2e58d7b5f45e03681b00df64fc8a61e9c1.tar.bz2 u-boot-midas-3b258e2e58d7b5f45e03681b00df64fc8a61e9c1.zip |
Fix build issues cause by LDFLAGS_FINAL changes
Commit 6dc1ece "Introduce a new linker flag LDFLAGS_FINAL" modified a
number of Makefiles in a way that broke out-of-tree builds. The
problem was that $(nandobj) was used before it got defined.
Fix this.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'nand_spl/board/freescale/mpc8572ds/Makefile')
-rw-r--r-- | nand_spl/board/freescale/mpc8572ds/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nand_spl/board/freescale/mpc8572ds/Makefile b/nand_spl/board/freescale/mpc8572ds/Makefile index 862c014b93..092ce143ef 100644 --- a/nand_spl/board/freescale/mpc8572ds/Makefile +++ b/nand_spl/board/freescale/mpc8572ds/Makefile @@ -29,6 +29,8 @@ PAD_TO := 0xfff01000 include $(TOPDIR)/config.mk +nandobj := $(OBJTREE)/nand_spl/ + LDSCRIPT= $(TOPDIR)/$(CPUDIR)/u-boot-nand_spl.lds LDFLAGS := -T $(LDSCRIPT) -Ttext $(CONFIG_SYS_TEXT_BASE_SPL) $(LDFLAGS) \ $(LDFLAGS_FINAL) @@ -42,9 +44,7 @@ COBJS = cache.o cpu_init_early.o cpu_init_nand.o fsl_law.o law.o \ SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c)) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) __OBJS := $(SOBJS) $(COBJS) -LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR) - -nandobj := $(OBJTREE)/nand_spl/ +LNDIR := $(nandobj)board/$(BOARDDIR) ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin |