Skip to content

Commit

Permalink
Rollup merge of #109111 - MU001999:master, r=jyn514
Browse files Browse the repository at this point in the history
Create dirs for build_triple

Fixes #109103
  • Loading branch information
Dylan-DPC authored Mar 15, 2023
2 parents 2aa3eea + a4692f4 commit d133c36
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bootstrap/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ impl Build {

// Make a symbolic link so we can use a consistent directory in the documentation.
let build_triple = build.out.join(&build.build.triple);
t!(fs::create_dir_all(&build_triple));
let host = build.out.join("host");
if let Err(e) = symlink_dir(&build.config, &build_triple, &host) {
if e.kind() != ErrorKind::AlreadyExists {
Expand Down

0 comments on commit d133c36

Please sign in to comment.