mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Auto merge of #12271 - mbrubeck:host_triple, r=emilio
Fix installation location for downloaded std packages Fixes a "can't find crate for `std`" error in mach build. Regression from #11945. r? @larsbergstrom <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12271) <!-- Reviewable:end -->
This commit is contained in:
commit
beff8ee68f
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ class MachCommands(CommandBase):
|
|||
"rust-std%s%s-%s" % (nightly_suffix, stable_version, target_triple),
|
||||
"rust-std-%s" % target_triple, "lib", "rustlib", target_triple),
|
||||
path.join(install_dir,
|
||||
"rustc%s%s-%s" % (nightly_suffix, stable_version, host_triple),
|
||||
"rustc%s%s-%s" % (nightly_suffix, stable_version, host_triple()),
|
||||
"rustc", "lib", "rustlib", target_triple))
|
||||
shutil.rmtree(path.join(install_dir,
|
||||
"rust-std%s%s-%s" % (nightly_suffix, stable_version, target_triple)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue