From: Debian Rust Maintainers Date: Thu, 13 Jun 2024 09:16:40 +0000 (+0200) Subject: partial revert of b9eedea4b0368fd1f00f204db75109ff444fab5b upstream X-Git-Tag: archive/raspbian/1.85.0+dfsg3-1+rpi1^2~21 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=dc2ca3259fea6b14a99643bd35b023d3e3fc0b2e;p=rustc.git partial revert of b9eedea4b0368fd1f00f204db75109ff444fab5b upstream Forwarded: not-needed Gbp-Pq: Topic build Gbp-Pq: Name d-bootstrap-permit-symlink-in-docs.patch --- diff --git a/src/bootstrap/src/core/build_steps/dist.rs b/src/bootstrap/src/core/build_steps/dist.rs index 34e6a1e1d3..658e73cb85 100644 --- a/src/bootstrap/src/core/build_steps/dist.rs +++ b/src/bootstrap/src/core/build_steps/dist.rs @@ -79,6 +79,7 @@ impl Step for Docs { tarball.set_product_name("Rust Documentation"); tarball.add_bulk_dir(builder.doc_out(host), dest); tarball.add_file(builder.src.join("src/doc/robots.txt"), dest, 0o644); + tarball.permit_symlinks(true); Some(tarball.generate()) } }