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.79.0+dfsg1-2+rpi1^2~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0ed0a6cb9fb6f9bc851e9d96d9bd3f75674398d9;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 0b5e33373f..85c5edb847 100644 --- a/src/bootstrap/src/core/build_steps/dist.rs +++ b/src/bootstrap/src/core/build_steps/dist.rs @@ -78,6 +78,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()) } }