mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
Fixing the build issue on NetBSD.
The NetBSD was missing for target-os checks on fsext.rs Fixed #6261
This commit is contained in:
parent
eacf53d010
commit
ac87b73244
1 changed files with 3 additions and 0 deletions
|
@ -643,6 +643,7 @@ impl FsMeta for StatFs {
|
||||||
not(target_os = "aix"),
|
not(target_os = "aix"),
|
||||||
not(target_os = "android"),
|
not(target_os = "android"),
|
||||||
not(target_os = "freebsd"),
|
not(target_os = "freebsd"),
|
||||||
|
not(target_os = "netbsd"),
|
||||||
not(target_os = "openbsd"),
|
not(target_os = "openbsd"),
|
||||||
not(target_os = "illumos"),
|
not(target_os = "illumos"),
|
||||||
not(target_os = "solaris"),
|
not(target_os = "solaris"),
|
||||||
|
@ -654,6 +655,7 @@ impl FsMeta for StatFs {
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
not(target_env = "musl"),
|
not(target_env = "musl"),
|
||||||
not(target_os = "freebsd"),
|
not(target_os = "freebsd"),
|
||||||
|
not(target_os = "netbsd"),
|
||||||
not(target_os = "redox"),
|
not(target_os = "redox"),
|
||||||
any(
|
any(
|
||||||
target_arch = "s390x",
|
target_arch = "s390x",
|
||||||
|
@ -668,6 +670,7 @@ impl FsMeta for StatFs {
|
||||||
target_env = "musl",
|
target_env = "musl",
|
||||||
target_os = "aix",
|
target_os = "aix",
|
||||||
target_os = "freebsd",
|
target_os = "freebsd",
|
||||||
|
target_os = "netbsd",
|
||||||
target_os = "illumos",
|
target_os = "illumos",
|
||||||
target_os = "solaris",
|
target_os = "solaris",
|
||||||
target_os = "redox",
|
target_os = "redox",
|
||||||
|
|
Loading…
Reference in a new issue