diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-22 07:35:42 -0600 |
|---|---|---|
| committer | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-22 07:35:42 -0600 |
| commit | 8f2e576cb31208de574c783b468ce5503ad8db2d (patch) | |
| tree | 7e350dfeba2882e09219a675a1b1d49b7c75a3b9 | |
| parent | d302c189378b2ee057c14589c2a5d5722b9d4933 (diff) | |
| download | rust-8f2e576cb31208de574c783b468ce5503ad8db2d.tar.gz rust-8f2e576cb31208de574c783b468ce5503ad8db2d.zip | |
Add make_run to distcheck.
| -rw-r--r-- | src/bootstrap/check.rs | 4 |
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; |
