From: Nicolas Toromanoff Date: Wed, 10 Mar 2021 16:16:46 +0000 (+0100) Subject: boot/uboot: fix kconfig with per-package directories and host-make X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3cf8173e5c3d23c3b147a3a083082409f09869ee;p=buildroot.git 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 Signed-off-by: Yann E. MORIN --- 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))