Skip to content

Commit 6531879

Browse files
committed
more s/llvm-tools/llvm-tools-preview/
1 parent c67566a commit 6531879

File tree

1 file changed

+5
-5
lines changed
  • src/tools/build-manifest/src

1 file changed

+5
-5
lines changed

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -298,11 +298,11 @@ impl Builder {
298298
self.package("rls-preview", &mut manifest.pkg, HOSTS);
299299
self.package("rustfmt-preview", &mut manifest.pkg, HOSTS);
300300
self.package("rust-analysis", &mut manifest.pkg, TARGETS);
301-
self.package("llvm-tools", &mut manifest.pkg, TARGETS);
301+
self.package("llvm-tools-preview", &mut manifest.pkg, TARGETS);
302302

303303
let rls_present = manifest.pkg.contains_key("rls-preview");
304304
let rustfmt_present = manifest.pkg.contains_key("rustfmt-preview");
305-
let llvm_tools_present = manifest.pkg.contains_key("llvm-tools");
305+
let llvm_tools_present = manifest.pkg.contains_key("llvm-tools-preview");
306306

307307
if rls_present {
308308
manifest.renames.insert("rls".to_owned(), Rename { to: "rls-preview".to_owned() });
@@ -359,7 +359,7 @@ impl Builder {
359359
}
360360
if llvm_tools_present {
361361
extensions.push(Component {
362-
pkg: "llvm-tools".to_string(),
362+
pkg: "llvm-tools-preview".to_string(),
363363
target: host.to_string(),
364364
});
365365
}
@@ -486,7 +486,7 @@ impl Builder {
486486
&self.rls_version
487487
} else if component == "rustfmt" || component == "rustfmt-preview" {
488488
&self.rustfmt_version
489-
} else if component == "llvm-tools" {
489+
} else if component == "llvm-tools" || component == "llvm-tools-preview" {
490490
&self.llvm_tools_version
491491
} else {
492492
&self.rust_version
@@ -500,7 +500,7 @@ impl Builder {
500500
&self.rls_git_commit_hash
501501
} else if component == "rustfmt" || component == "rustfmt-preview" {
502502
&self.rustfmt_git_commit_hash
503-
} else if component == "llvm-tools" {
503+
} else if component == "llvm-tools" || component == "llvm-tools-preview" {
504504
&self.llvm_tools_git_commit_hash
505505
} else {
506506
&self.rust_git_commit_hash

0 commit comments

Comments
 (0)