We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd2d30 commit 34c9f8cCopy full SHA for 34c9f8c
src/libstd/sys/unix/process/process_unix.rs
@@ -178,7 +178,7 @@ impl Command {
178
cvt_r(|| libc::dup2(fd, libc::STDERR_FILENO))?;
179
}
180
181
- #[cfg(not(any(target_os = "l4re")))]
+ #[cfg(not(target_os = "l4re"))]
182
{
183
if let Some(u) = self.get_gid() {
184
cvt(libc::setgid(u as gid_t))?;
@@ -202,7 +202,7 @@ impl Command {
202
203
204
// emscripten has no signal support.
205
- #[cfg(not(any(target_os = "emscripten")))]
+ #[cfg(not(target_os = "emscripten"))]
206
207
use crate::mem::MaybeUninit;
208
// Reset signal handling so the child process starts in a
0 commit comments