From b6aa163d2b6db2d5074f7fce858a70d63326d693 Mon Sep 17 00:00:00 2001 From: Nicolas Toromanoff <nicolas.toromanoff@foss.st.com> Date: Wed, 10 Mar 2021 17:16:46 +0100 Subject: [PATCH] boot/uboot: fix kconfig with per-package directories and host-make If PER_PACKAGE_DIRECTORIES=Y and using host-make package (because BR2_FORCE_HOST_BUILD=Y or local make is too old) .stamp_dotconfig target needs per-package/uboot/host/bin/host-make that doesn't exist yet. Add host-make into UBOOT_KCONFIG_DEPENDENCIES. Signed-off-by: Nicolas Toromanoff <nicolas.toromanoff@foss.st.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> (cherry picked from commit 3cf8173e5c3d23c3b147a3a083082409f09869ee) Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- boot/uboot/uboot.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index bb45980022..dbe82e65b1 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -498,6 +498,7 @@ $(eval $(generic-package)) else ifeq ($(BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG),y) UBOOT_MAKE_ENV = $(TARGET_MAKE_ENV) UBOOT_KCONFIG_DEPENDENCIES = \ + $(BR2_MAKE_HOST_DEPENDENCY) \ $(BR2_BISON_HOST_DEPENDENCY) \ $(BR2_FLEX_HOST_DEPENDENCY) $(eval $(kconfig-package))