diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-11-21 18:38:30 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-12-04 15:29:23 +0100 |
| commit | 8cc024c84dc76cb081bbaf8ae2eef4647ed8d78b (patch) | |
| tree | d1159fe305fb04dfcf4434b58c5d4e09e6cc0183 | |
| parent | d3e14a49c9710a93ebd315b1b54a596496531de7 (diff) | |
| download | rust-8cc024c84dc76cb081bbaf8ae2eef4647ed8d78b.tar.gz rust-8cc024c84dc76cb081bbaf8ae2eef4647ed8d78b.zip | |
Fix invalid path in `build_sysroot_inner`
| -rw-r--r-- | build_system/src/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_system/src/build.rs b/build_system/src/build.rs index 43fa442bf5b..8f5c113fe31 100644 --- a/build_system/src/build.rs +++ b/build_system/src/build.rs @@ -196,7 +196,7 @@ fn build_sysroot_inner( ) })?; run_command( - &[&"cp", &"-r", &"sysroot_src/library/", &sysroot_src_path], + &[&"cp", &"-r", &start_dir.join("sysroot_src/library/"), &sysroot_src_path], None, )?; |
