Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14355
-gerrit
commit 7f23a5adda199812a4f35c51a054bb019a85afd0 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Wed Apr 13 16:23:48 2016 -0700
Point to the correct libpayload path
libpayload is not standalone, so assume it lives under coreboot to make out of the box builds easier.
Change-Id: Ib6240e7459a7e56f911c01e1ebe9f535cc0e50ad Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile index 2b7edb6..39e477b 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ export obj := $(src)/build export objk := $(src)/build/util/kconfig
ifndef LIBCONFIG_PATH - LIBCONFIG_PATH := $(src)/../libpayload +LIBCONFIG_PATH := $(src)/../coreboot/payloads/libpayload endif export LIBCONFIG_PATH