uucore: disable utmpx feature on OpenBSD

- See issue uutils/coreutils#5596 for details
This commit is contained in:
Laurent Cheylus 2023-12-04 18:53:04 +01:00
parent 38ea40d0bf
commit e6d12732f5
2 changed files with 2 additions and 0 deletions

View file

@ -52,6 +52,7 @@ pub mod signals;
unix, unix,
not(target_os = "android"), not(target_os = "android"),
not(target_os = "fuchsia"), not(target_os = "fuchsia"),
not(target_os = "openbsd"),
not(target_os = "redox"), not(target_os = "redox"),
not(target_env = "musl"), not(target_env = "musl"),
feature = "utmpx" feature = "utmpx"

View file

@ -79,6 +79,7 @@ pub use crate::features::signals;
unix, unix,
not(target_os = "android"), not(target_os = "android"),
not(target_os = "fuchsia"), not(target_os = "fuchsia"),
not(target_os = "openbsd"),
not(target_os = "redox"), not(target_os = "redox"),
not(target_env = "musl"), not(target_env = "musl"),
feature = "utmpx" feature = "utmpx"