From: Michael Pratt Date: Fri, 27 Sep 2024 05:18:03 +0000 (-0400) Subject: tools: require coreutils to build findutils X-Git-Tag: v25.12.0-rc1~1783 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=405652469fc4d8bd589031c39693434be52d39e7;p=thirdparty%2Fopenwrt.git tools: require coreutils to build findutils The install stage of findutils uses the install utility with GNU options which is provided to macOS by coreutils. Before, Make coincidentally built them in the right order, this makes the prerequisite explicit. Tested-by: Georgi Valkov # macOS Signed-off-by: Michael Pratt Link: https://github.com/openwrt/openwrt/pull/16522 Signed-off-by: Robert Marko --- diff --git a/tools/Makefile b/tools/Makefile index e86e2789e66..e01d95d0ecc 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -143,6 +143,7 @@ else endif ifneq ($(filter coreutils,$(tools-y)),) $(curdir)/elfutils/compile += $(curdir)/coreutils/compile + $(curdir)/findutils/compile += $(curdir)/coreutils/compile $(curdir)/squashfs4/compile += $(curdir)/coreutils/compile endif