diff options
| author | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2017-10-18 21:55:12 +0200 |
|---|---|---|
| committer | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2017-10-19 12:22:16 +0200 |
| commit | 27cc11931aee7674e4c295ada7d69e0af45f6989 (patch) | |
| tree | 19dfac2564d94e1bb75f6766431b51182743106d /src/bootstrap | |
| parent | b7960878ba77124505aabe7dc99d0a898354c326 (diff) | |
| download | rust-27cc11931aee7674e4c295ada7d69e0af45f6989.tar.gz rust-27cc11931aee7674e4c295ada7d69e0af45f6989.zip | |
rustbuild: fix dist in debug mode
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/dist.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 02dfa04d920..38dca108012 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -630,7 +630,7 @@ impl Step for Analysis { let image = tmpdir(build).join(format!("{}-{}-image", name, target)); let src = build.stage_out(compiler, Mode::Libstd) - .join(target).join("release").join("deps"); + .join(target).join(build.cargo_dir()).join("deps"); let image_src = src.join("save-analysis"); let dst = image.join("lib/rustlib").join(target).join("analysis"); |
