diff options
| -rw-r--r-- | src/bootstrap/dist.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 0c1317c37c1..4ec148e9fc4 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -212,6 +212,7 @@ fn make_win_dist(rust_root: &Path, plat_root: &Path, target_triple: &str, build: //Copy runtime dlls next to rustc.exe let dist_bin_dir = rust_root.join("bin/"); + fs::create_dir_all(&dist_bin_dir).expect("creating dist_bin_dir failed"); for src in rustc_dlls { copy_to_folder(&src, &dist_bin_dir); } |
