diff options
author | Ed Swarthout <Ed.Swarthout@freescale.com> | 2007-05-08 14:17:07 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-05-08 14:17:07 -0500 |
commit | b84289b595731e8851df46e893845cc1322c9b9b (patch) | |
tree | 5d9576add7c3a6a96f9ae462d02cbf5f8d00375f /board/mpc8641hpcn/Makefile | |
parent | a75af9bfd8fff0499efdbb90601cec5a2afef117 (diff) | |
download | u-boot-imx-b84289b595731e8851df46e893845cc1322c9b9b.zip u-boot-imx-b84289b595731e8851df46e893845cc1322c9b9b.tar.gz u-boot-imx-b84289b595731e8851df46e893845cc1322c9b9b.tar.bz2 |
8641hpcn: Fix Makefile after moving pixis to board/freescale.
The OBJTREE != SRCTREE build scenario was broken.
This fixes it.
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/mpc8641hpcn/Makefile')
-rw-r--r-- | board/mpc8641hpcn/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/mpc8641hpcn/Makefile b/board/mpc8641hpcn/Makefile index 9625211..df56b31 100644 --- a/board/mpc8641hpcn/Makefile +++ b/board/mpc8641hpcn/Makefile @@ -23,6 +23,10 @@ include $(TOPDIR)/config.mk +ifneq ($(OBJTREE),$(SRCTREE)) +$(shell mkdir -p $(obj)../freescale/common) +endif + LIB = $(obj)lib$(BOARD).a COBJS := $(BOARD).o sys_eeprom.o \ |