diff options
| author | Michael Pratt | 2024-09-27 04:20:38 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-07-26 12:38:08 +0000 |
| commit | 7a8fd735489e6d02ecccfe63ffdf7c3694ee8dbc (patch) | |
| tree | 1a0f5f5f6155b593551eed3a4f0a6085e1c425c5 | |
| parent | 405652469fc4d8bd589031c39693434be52d39e7 (diff) | |
| download | openwrt-7a8fd735489e6d02ecccfe63ffdf7c3694ee8dbc.tar.gz | |
tools: require coreutils to build util-linux
The install stage of util-linux 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 e01d95d0ec..800647762f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -145,6 +145,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) |