diff options
author | Wolfgang Denk <wd@denx.de> | 2008-05-14 13:55:30 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-05-14 14:02:14 +0200 |
commit | cda2a4a9961fd4341b7db305cb22fc05957e8b77 (patch) | |
tree | cc1008f04a83bcec6639d4f1042a27f464b3ec6d /board/esd | |
parent | fdd1247a66d788a3446244f6fde9955a93c26322 (diff) | |
download | u-boot-imx-cda2a4a9961fd4341b7db305cb22fc05957e8b77.zip u-boot-imx-cda2a4a9961fd4341b7db305cb22fc05957e8b77.tar.gz u-boot-imx-cda2a4a9961fd4341b7db305cb22fc05957e8b77.tar.bz2 |
Fix config files for out-of-tree building
Several board/<...>/config.mk files include dynamically built (by
the Makefile) config files but used the wrong file name of
$(TOPDIR)/board/$(BOARDDIR)/config.tmp
instead if the correct
$(OBJTREE)/board/$(BOARDDIR)/config.tmp
The bug is nasty because the build result is correct for the (normal)
in-tree builds, and because 'sinclude' is used no errors get raised
even for out-of-tree build tests. But out-of-tree builds use an
incomplete and thus usually incorrect configuration...
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/esd')
-rw-r--r-- | board/esd/mecp5200/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/esd/mecp5200/config.mk b/board/esd/mecp5200/config.mk index 07b5de1..170779d 100644 --- a/board/esd/mecp5200/config.mk +++ b/board/esd/mecp5200/config.mk @@ -32,7 +32,7 @@ # 0x00100000 boot from RAM (for testing only) # -sinclude $(TOPDIR)/board/$(BOARDDIR)/config.tmp +sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp ifndef TEXT_BASE ## Standard: boot high |