about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2017-05-24 08:45:12 +0200
committerMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2017-05-24 08:45:56 +0200
commitd0ea705a160bbd4c3537aeca317000d7b78a8a8b (patch)
tree803a0af7df255849078d64221f587376a7773205
parent53ae00a8ab468072c3c7c5736eb17577de2d37fb (diff)
downloadrust-d0ea705a160bbd4c3537aeca317000d7b78a8a8b.tar.gz
rust-d0ea705a160bbd4c3537aeca317000d7b78a8a8b.zip
rustbuild: distcheck needs rust-src too
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
-rw-r--r--src/bootstrap/step.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs
index 8e65fbd40b4..16029a8a0cc 100644
--- a/src/bootstrap/step.rs
+++ b/src/bootstrap/step.rs
@@ -493,6 +493,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
          .run(move |s| check::docs(build, &s.compiler()));
     rules.test("check-distcheck", "distcheck")
          .dep(|s| s.name("dist-plain-source-tarball"))
+         .dep(|s| s.name("dist-src"))
          .run(move |_| check::distcheck(build));
 
     rules.build("test-helpers", "src/rt/rust_test_helpers.c")