Skip to content

Commit cf3738a

Browse files
committed
fix(build-manifest)!: limit rustc-docs to current host target in the manifest
1 parent 9b81629 commit cf3738a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • src/tools/build-manifest/src

src/tools/build-manifest/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,12 @@ impl Builder {
301301
| PkgType::LlvmTools
302302
| PkgType::RustAnalysis
303303
| PkgType::JsonDocs
304+
| PkgType::RustcDocs
304305
| PkgType::RustcCodegenCranelift
305306
| PkgType::LlvmBitcodeLinker => {
306307
extensions.push(host_component(pkg));
307308
}
308-
PkgType::RustcDev | PkgType::RustcDocs => {
309+
PkgType::RustcDev => {
309310
extensions.extend(HOSTS.iter().map(|target| Component::from_pkg(pkg, target)));
310311
}
311312
PkgType::RustSrc => {

0 commit comments

Comments
 (0)