diff options
| author | Michael Pratt | 2024-09-27 05:18:03 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-07-26 12:38:08 +0000 |
| commit | 405652469fc4d8bd589031c39693434be52d39e7 (patch) | |
| tree | 102d6f06d8d41f57e135b989068e2b64af5c037c | |
| parent | e776c9fe4ef9823993e230f2795d4255876e5ca2 (diff) | |
| download | openwrt-405652469fc4d8bd589031c39693434be52d39e7.tar.gz | |
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 <gvalkov@gmail.com> # macOS
Signed-off-by: Michael Pratt <mcpratt@pm.me>
Link: https://github.com/openwrt/openwrt/pull/16522
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | tools/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index e86e2789e6..e01d95d0ec 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 |