summaryrefslogtreecommitdiffstats
path: root/debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:37 +0000
commit1c69ecb2dd463a5cd922e872386381e1cc17147e (patch)
treed49e9c5086b704151975474cb9ae68509ffa4787 /debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch
parentMerging upstream version 1.76.0+dfsg1. (diff)
downloadrustc-1c69ecb2dd463a5cd922e872386381e1cc17147e.tar.xz
rustc-1c69ecb2dd463a5cd922e872386381e1cc17147e.zip
Merging debian version 1.76.0+dfsg1-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch')
-rw-r--r--debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch b/debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch
deleted file mode 100644
index 6453c3a30..000000000
--- a/debian/patches/c-2003-workaround-qemu-vfork-command-not-found.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Index: rust/src/tools/cargo/crates/cargo-test-macro/src/lib.rs
-===================================================================
---- rust.orig/src/tools/cargo/crates/cargo-test-macro/src/lib.rs
-+++ rust/src/tools/cargo/crates/cargo-test-macro/src/lib.rs
-@@ -223,6 +223,14 @@ fn has_command(command: &str) -> bool {
- }
- };
- if !output.status.success() {
-+ // Debian specific patch, upstream wontfix:
-+ // qemu has a faulty vfork where it fails to fail if a command is not
-+ // found, with a unix_wait_status of 32512, or 0x7f00, 7f meaning
-+ // exit code 127. See https://github.com/rust-lang/rust/issues/90825
-+ use std::os::unix::process::ExitStatusExt;
-+ if output.status.into_raw() == 0x7f00 {
-+ return false;
-+ }
- panic!(
- "expected command `{}` to be runnable, got error {}:\n\
- stderr:{}\n\