From 7eebabeb92c09baf444e8bb5e46fc262a22fe853 Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Mon, 22 May 2017 21:32:27 -0400 Subject: [PATCH] Create the bin dir --- src/bootstrap/dist.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 0c1317c37c15f..4ec148e9fc468 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); }