diff options
| author | Michael Pratt | 2024-09-27 03:17:41 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-07-26 12:38:08 +0000 |
| commit | 90262c6f6e111d6efff134d74d180114af2d5655 (patch) | |
| tree | 5e39d0bcd397e00b0c12b2de0ccebc5f9a6a071a | |
| parent | b8c0ed469238291298732512045ed8659ac22ea8 (diff) | |
| download | openwrt-90262c6f6e111d6efff134d74d180114af2d5655.tar.gz | |
tools/coreutils: provide the rmdir utility
Use the rmdir utility provided by GNU coreutils for macOS
in order to be able to use the option "--ignore-fail-on-non-empty".
Some other tools such as elfutils use this while building.
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/coreutils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coreutils/Makefile b/tools/coreutils/Makefile index fcd2fa76bb..a0443b214c 100644 --- a/tools/coreutils/Makefile +++ b/tools/coreutils/Makefile @@ -16,7 +16,7 @@ PKG_HASH:=2bec616375002c92c1ed5ead32a092b174fe44c14bc736d32e5961053b821d84 HOST_BUILD_PARALLEL := 1 -PKG_PROGRAMS:=chown cp date ginstall ln readlink realpath seq stat touch +PKG_PROGRAMS:=chown cp date ginstall ln readlink realpath rmdir seq stat touch include $(INCLUDE_DIR)/host-build.mk |