diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-07-23 10:25:49 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-08-30 22:57:54 +0300 |
| commit | 7dfbf59f100c52e991796739ff21b9720219703f (patch) | |
| tree | e0c154c8114fc4d4027ed02ce276621469527319 /src/bootstrap | |
| parent | 85fbf49ce0e2274d0acf798f6e703747674feec3 (diff) | |
cleanup: Remove duplicate library names from `Cargo.toml`s
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/Cargo.toml | 1 | ||||
| -rw-r--r-- | src/bootstrap/compile.rs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml index c4918d7f2e7..faec2c53742 100644 --- a/src/bootstrap/Cargo.toml +++ b/src/bootstrap/Cargo.toml @@ -5,7 +5,6 @@ version = "0.0.0" edition = "2018" [lib] -name = "bootstrap" path = "lib.rs" doctest = false diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index bf06b61d1d7..7814ca8e5bb 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -819,7 +819,7 @@ impl Step for Assemble { // Link the compiler binary itself into place let out_dir = builder.cargo_out(build_compiler, Mode::Rustc, host); - let rustc = out_dir.join(exe("rustc_binary", host)); + let rustc = out_dir.join(exe("rustc-main", host)); let bindir = sysroot.join("bin"); t!(fs::create_dir_all(&bindir)); let compiler = builder.rustc(target_compiler); |
