mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
fix ~ 'musl' environment doesn't support utmpx
This commit is contained in:
parent
217d83526b
commit
2792d85865
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ pub mod parse_time;
|
|||
|
||||
#[cfg(all(not(windows), feature = "mode"))]
|
||||
pub mod mode;
|
||||
#[cfg(all(unix, not(target_os = "fuchsia"), feature = "utmpx"))]
|
||||
#[cfg(all(unix, not(target_os = "fuchsia"), not(target_env="musl"), feature = "utmpx"))]
|
||||
pub mod utmpx;
|
||||
#[cfg(all(unix, feature = "entries"))]
|
||||
pub mod entries;
|
||||
|
|
Loading…
Reference in a new issue