diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-12 11:04:26 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-12-12 12:28:22 -0800 |
| commit | 6cb8bbc3ffaa3c8215337ef9c0dd6fa2992e6ef1 (patch) | |
| tree | c00d5d20c1b67540a3a1c3ffd08478918a56aca1 /src/bootstrap/step.rs | |
| parent | 5f07d3dea9717230d9c9742a3e7b9c4687c95d2e (diff) | |
| download | rust-6cb8bbc3ffaa3c8215337ef9c0dd6fa2992e6ef1.tar.gz rust-6cb8bbc3ffaa3c8215337ef9c0dd6fa2992e6ef1.zip | |
rustbuild: Fix dist of save-analysis info
We don't need an extra bare tarball, the save-analysis info is already produced with a version/target in the filename.
Diffstat (limited to 'src/bootstrap/step.rs')
| -rw-r--r-- | src/bootstrap/step.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs index 884cc7da8ea..631e5fa1afd 100644 --- a/src/bootstrap/step.rs +++ b/src/bootstrap/step.rs @@ -499,7 +499,7 @@ pub fn build_rules(build: &Build) -> Rules { .default(true) .dep(|s| s.name("default:doc")) .run(move |s| dist::docs(build, s.stage, s.target)); - rules.dist("dist-analysis", "src/libstd") + rules.dist("dist-analysis", "analysis") .dep(|s| s.name("dist-std")) .default(true) .run(move |s| dist::analysis(build, &s.compiler(), s.target)); |
