- Update lang/rust to 1.54.0 - Update devel/racer to 2.1.48 - Fix various consumers Changes: https://blog.rust-lang.org/2021/07/29/Rust-1.54.0.html Reviewed by: tobik, pkubaj Differential Revision: https://reviews.freebsd.org/D31617 With hat: rust
17 lines
661 B
Rust
17 lines
661 B
Rust
Only install docs for the host target
|
|
|
|
It otherwise wastes significant time (there are a lot of individual
|
|
files) and stages host docs, wasm docs, which unstages the host
|
|
docs first.
|
|
|
|
--- src/bootstrap/install.rs.orig 2021-03-22 17:05:25 UTC
|
|
+++ src/bootstrap/install.rs
|
|
@@ -138,7 +138,7 @@ macro_rules! install {
|
|
}
|
|
|
|
install!((self, builder, _config),
|
|
- Docs, "src/doc", _config.docs, only_hosts: false, {
|
|
+ Docs, "src/doc", _config.docs, only_hosts: true, {
|
|
if let Some(tarball) = builder.ensure(dist::Docs { host: self.target }) {
|
|
install_sh(builder, "docs", self.compiler.stage, Some(self.target), &tarball);
|
|
} else {
|