From: Debian Rust Maintainers Date: Mon, 26 Jun 2023 21:16:27 +0000 (+0100) Subject: d-bootstrap-permit-symlink-in-docs X-Git-Tag: archive/raspbian/1.65.0+dfsg1-2+rpi1^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c50cfcfb33b794256d7c4988fb9dc131e9e93619;p=rustc.git d-bootstrap-permit-symlink-in-docs partial revert of b9eedea4b0368fd1f00f204db75109ff444fab5b upstream Gbp-Pq: Name d-bootstrap-permit-symlink-in-docs.patch --- diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 3c6fa744e0..a7f729e8e0 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -83,6 +83,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()) } }