diff options
author | Simonas Kazlauskas <git@kazlauskas.me> | 2021-02-27 17:55:22 +0200 |
---|---|---|
committer | Simonas Kazlauskas <git@kazlauskas.me> | 2021-02-27 17:55:22 +0200 |
commit | a757fae24596e936b819a8974054eca95d95a58e (patch) | |
tree | 936787a05166556d6eaf2bbb809d4be3410f87c2 /library/std/src/sys/unix/stack_overflow.rs | |
parent | 8e863eb59a10fb0900d7377524a0dc7bf44b9ae3 (diff) | |
download | rust-a757fae24596e936b819a8974054eca95d95a58e.tar.gz |
Remove the x86_64-rumprun-netbsd target
Closes #81514
Diffstat (limited to 'library/std/src/sys/unix/stack_overflow.rs')
-rw-r--r-- | library/std/src/sys/unix/stack_overflow.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/stack_overflow.rs b/library/std/src/sys/unix/stack_overflow.rs index d8474205352..d7bba50c76a 100644 --- a/library/std/src/sys/unix/stack_overflow.rs +++ b/library/std/src/sys/unix/stack_overflow.rs @@ -34,7 +34,7 @@ impl Drop for Handler { target_os = "freebsd", target_os = "solaris", target_os = "illumos", - all(target_os = "netbsd", not(target_vendor = "rumprun")), + target_os = "netbsd", target_os = "openbsd" ))] mod imp { @@ -218,7 +218,7 @@ mod imp { target_os = "freebsd", target_os = "solaris", target_os = "illumos", - all(target_os = "netbsd", not(target_vendor = "rumprun")), + target_os = "netbsd", target_os = "openbsd", )))] mod imp { |