1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-05 07:27:46 +00:00

fix ~ 'musl' environment doesn't support utmpx

This commit is contained in:
Roy Ivy III 2020-01-01 19:59:38 +00:00
parent 217d83526b
commit 2792d85865

View file

@ -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;