summaryrefslogtreecommitdiffstats
path: root/debian/patches/d-bootstrap-cargo-check-cfg.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/d-bootstrap-cargo-check-cfg.patch')
-rw-r--r--debian/patches/d-bootstrap-cargo-check-cfg.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/d-bootstrap-cargo-check-cfg.patch b/debian/patches/d-bootstrap-cargo-check-cfg.patch
deleted file mode 100644
index eab9c456b..000000000
--- a/debian/patches/d-bootstrap-cargo-check-cfg.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-our cargo doesn't know about the 'output' part yet, this patch can be dropped
-with cargo >= 0.64
-
-Index: rust/src/bootstrap/builder.rs
-===================================================================
---- rust.orig/src/bootstrap/builder.rs
-+++ rust/src/bootstrap/builder.rs
-@@ -1358,9 +1358,9 @@ impl<'a> Builder<'a> {
- // complete list of features, so for that reason we don't enable checking of
- // features for std crates.
- cargo.arg(if mode != Mode::Std {
-- "-Zcheck-cfg=names,values,output,features"
-+ "-Zcheck-cfg=names,values,features"
- } else {
-- "-Zcheck-cfg=names,values,output"
-+ "-Zcheck-cfg=names,values"
- });
-
- // Add extra cfg not defined in/by rustc