From 2f3c5c0077ac32c0031b8bc4e589a42f1df5fe28 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Fri, 27 Sep 2024 00:20:38 -0400 Subject: [PATCH] tools: require coreutils to build util-linux The install stage of util-linux uses the install utility, which is provided to macOS by coreutils. Before, Make coincidentally built them in the right order, this makes the prerequisite explicit. Signed-off-by: Michael Pratt --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Makefile b/tools/Makefile index 9d5df215e2f..25e052b42d6 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -142,6 +142,7 @@ ifneq ($(filter coreutils,$(tools-y)),) $(curdir)/elfutils/compile += $(curdir)/coreutils/compile $(curdir)/findutils/compile += $(curdir)/coreutils/compile $(curdir)/squashfs4/compile += $(curdir)/coreutils/compile + $(curdir)/util-linux/compile += $(curdir)/coreutils/compile endif ifeq ($(HOST_OS),Darwin)