about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2017-07-22 07:35:42 -0600
committerMark Simulacrum <mark.simulacrum@gmail.com>2017-07-22 07:35:42 -0600
commit8f2e576cb31208de574c783b468ce5503ad8db2d (patch)
tree7e350dfeba2882e09219a675a1b1d49b7c75a3b9
parentd302c189378b2ee057c14589c2a5d5722b9d4933 (diff)
downloadrust-8f2e576cb31208de574c783b468ce5503ad8db2d.tar.gz
rust-8f2e576cb31208de574c783b468ce5503ad8db2d.zip
Add make_run to distcheck.
-rw-r--r--src/bootstrap/check.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs
index a07505edc2e..fe24a666de2 100644
--- a/src/bootstrap/check.rs
+++ b/src/bootstrap/check.rs
@@ -1197,6 +1197,10 @@ impl Step for Distcheck {
         run.path("distcheck")
     }
 
+    fn make_run(run: RunConfig) {
+        run.builder.ensure(Distcheck);
+    }
+
     /// Run "distcheck", a 'make check' from a tarball
     fn run(self, builder: &Builder) {
         let build = builder.build;