On 06.04.2017 21:07, Alex Bennée wrote: > I would of thought VPATH took care of this but apparently not. > > Signed-off-by: Alex Bennée <alex.bennee@xxxxxxxxxx> > --- > Makefile | 8 ++++---- > arm/Makefile | 2 +- > arm/Makefile.arm | 2 +- > arm/Makefile.arm64 | 2 +- > powerpc/Makefile | 2 +- > powerpc/Makefile.ppc64 | 2 +- > x86/Makefile | 2 +- > x86/Makefile.i386 | 2 +- > x86/Makefile.x86_64 | 2 +- > 9 files changed, 12 insertions(+), 12 deletions(-) > > diff --git a/Makefile b/Makefile > index 80bc57e..781186e 100644 > --- a/Makefile > +++ b/Makefile > @@ -32,14 +32,14 @@ cflatobjs := \ > lib/stack.o > > # libfdt paths > -LIBFDT_objdir = lib/libfdt > -LIBFDT_srcdir = lib/libfdt > +LIBFDT_objdir = $(SRCDIR)/lib/libfdt I think this is wrong - objdir should not get a SRCDIR prefix. Thomas