diff options
| author | Marcos Alano | 2025-08-27 11:35:37 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-09-08 12:41:38 +0000 |
| commit | 67345ead6cf2c406df11f1c341f5c34dfe28bd01 (patch) | |
| tree | 57d53a76b0f0f9bfec00284f9f032cb58d1d45a5 | |
| parent | 13db7a0708ae057096f32e394bc4caab11be9dcc (diff) | |
| download | openwrt-67345ead6cf2c406df11f1c341f5c34dfe28bd01.tar.gz | |
build: Add compatibility with uutils' coreutils
Add support so openwrt can be compiled using
coreutils from GNU or uutils.
Signed-off-by: Marcos Alano <marcoshalano@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19883
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | include/prereq-build.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index b913e62e43..ba95f7eb62 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -9,11 +9,11 @@ SHELL:=sh PKG_NAME:=Build dependency $(eval $(call TestHostCommand,true, \ - Please install GNU 'coreutils', \ + Please install 'coreutils', \ $(TRUE))) $(eval $(call TestHostCommand,false, \ - Please install GNU 'coreutils', \ + Please install 'coreutils', \ $(FALSE); [ $$$$$$$$? = 1 ] && $(TRUE))) # Required for the toolchain @@ -178,9 +178,9 @@ $(eval $(call SetupHostCommand,bzip2,Please install 'bzip2', \ $(eval $(call SetupHostCommand,wget,Please install GNU 'wget', \ wget --version | grep GNU)) -$(eval $(call SetupHostCommand,install,Please install GNU 'install', \ +$(eval $(call SetupHostCommand,install,Please install 'install', \ $(TOPDIR)/staging_dir/host/bin/ginstall --version | grep GNU, \ - install --version | grep GNU, \ + install --version | grep 'GNU\|uutils', \ ginstall --version | grep GNU)) $(eval $(call SetupHostCommand,perl,Please install Perl 5.x, \ |