mirror of
https://github.com/uutils/coreutils
synced 2024-12-15 15:52:42 +00:00
uucore: disable utmpx feature on OpenBSD
- See issue uutils/coreutils#5596 for details
This commit is contained in:
parent
38ea40d0bf
commit
e6d12732f5
2 changed files with 2 additions and 0 deletions
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue