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/mpc8315erdb/Makefile | |
parent | b12fee010cff9738735e0f213205906ff68aead8 (diff) | |
download | u-boot-imx-3b258e2e58d7b5f45e03681b00df64fc8a61e9c1.zip u-boot-imx-3b258e2e58d7b5f45e03681b00df64fc8a61e9c1.tar.gz u-boot-imx-3b258e2e58d7b5f45e03681b00df64fc8a61e9c1.tar.bz2 |
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/mpc8315erdb/Makefile')
-rw-r--r-- | nand_spl/board/freescale/mpc8315erdb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nand_spl/board/freescale/mpc8315erdb/Makefile b/nand_spl/board/freescale/mpc8315erdb/Makefile index 2f83e2b..cff2a43 100644 --- a/nand_spl/board/freescale/mpc8315erdb/Makefile +++ b/nand_spl/board/freescale/mpc8315erdb/Makefile @@ -27,6 +27,8 @@ PAD_TO := 0xfff04000 include $(TOPDIR)/config.mk +nandobj := $(OBJTREE)/nand_spl/ + LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE_SPL) \ $(LDFLAGS) $(LDFLAGS_FINAL) @@ -40,9 +42,7 @@ COBJS = nand_boot_fsl_elbc.o $(BOARD).o sdram.o ns16550.o nand_init.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 |