From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Date: Tue, 02 Mar 2010 15:25:16 -0600 Subject: [U-Boot] [PATCH] arm, suen3: fix compile error, if doing not a local build In-Reply-To: <4B8BD60A.1060205@denx.de> References: <4B89AA21.10609@windriver.com> <4B8B6D4E.2010609@denx.de> <4B8BC8C5.1010608@windriver.com> <4B8BD60A.1060205@denx.de> Message-ID: <4B8D823C.8040006@windriver.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Heiko Schocher wrote: > Signed-off-by: Heiko Schocher > --- > > Patch against current git://git.denx.de/u-boot-marvell.git > > board/keymile/km_arm/Makefile | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > This fixes the build errors. There are still some compile warnings wrt dereferencing pointers. Do you have a fix for these? Prafulla, Are you ok with me pushing this directly to ARM ? Tom > diff --git a/board/keymile/km_arm/Makefile b/board/keymile/km_arm/Makefile > index fffc6a3..c5b0be1 100644 > --- a/board/keymile/km_arm/Makefile > +++ b/board/keymile/km_arm/Makefile > @@ -23,6 +23,9 @@ > # > > include $(TOPDIR)/config.mk > +ifneq ($(OBJTREE),$(SRCTREE)) > +$(shell mkdir -p $(obj)../common) > +endif > > LIB = $(obj)lib$(BOARD).a >