mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
e722250e7d
In the context of musl, users are typically expecting statically-linked tools, as this is one of musl's strong suits and one of the biggest reasons to use it instead of glibc (that is not static-link-friendly for reasons). - remove the build-flag which was causing musl libc to be linked dynamically - re-add feat_os_unix_musl which was removed in https://github.com/uutils/coreutils/commit/21d5cef15308c018bcb0b34fcbdff47a24aa9fa6 - exclude stdbuf from feat_os_unix_musl, since libstdbuf.so can't be built with a statically linked musl libc - add test_musl_no_dynamic_deps so that this does not regress in the future Fixes https://github.com/uutils/coreutils/issues/8572 Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>