Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/70584 )
Change subject: Makefile: Add default for HOSTPKG_CONFIG ......................................................................
Makefile: Add default for HOSTPKG_CONFIG
Kconfig uses this variable to detect `ncurses` compilation and linking flags. Without it, some guesswork fallback is assumed that only works by chance.
Change-Id: Iad21bdb2d61db04cf7397ab447c7c045e2067705 Signed-off-by: Nico Huber nico.h@gmx.de Reviewed-on: https://review.coreboot.org/c/coreboot/+/70584 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Michael Büchler michael.buechler@posteo.net Reviewed-by: Angel Pons th3fanbus@gmail.com --- M Makefile 1 file changed, 21 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved Michael Büchler: Looks good to me, but someone else must approve
diff --git a/Makefile b/Makefile index e817992..4fb0d71 100644 --- a/Makefile +++ b/Makefile @@ -69,6 +69,9 @@ HOSTCFLAGS := -g HOSTCXXFLAGS := -g
+HOSTPKG_CONFIG ?= pkg-config +COREBOOT_EXPORTS += HOSTPKG_CONFIG + PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I .
export $(COREBOOT_EXPORTS)