From 502d19be8990de31eba76dec2aae2a95a59557db Mon Sep 17 00:00:00 2001 From: Maximilian Brune Date: Sun, 25 May 2025 11:06:12 +0200 Subject: [PATCH] payloads/external/LinuxBoot/targets/u-root.mk: Add missing prerequisite the build directory prerequisite was missing. As far as I know, it didn't cause any issues, but it should still be there for correctness. Signed-off-by: Maximilian Brune Change-Id: Ieba578871af2fe886def059ab1568b85cd641e6e Reviewed-on: https://review.coreboot.org/c/coreboot/+/87820 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- payloads/external/LinuxBoot/targets/u-root.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payloads/external/LinuxBoot/targets/u-root.mk b/payloads/external/LinuxBoot/targets/u-root.mk index 158a605f29..ddc09e15ba 100644 --- a/payloads/external/LinuxBoot/targets/u-root.mk +++ b/payloads/external/LinuxBoot/targets/u-root.mk @@ -35,7 +35,7 @@ ifeq ($(shell if [ $(go_version_minor) -lt 9 ]; then echo y; fi),y) endif endif -$(uroot_build): +$(uroot_build): | build/ git clone https://$(uroot_package) $(uroot_build) git -C $(uroot_build) checkout --quiet $(CONFIG_LINUXBOOT_UROOT_VERSION)