From 8f2e576cb31208de574c783b468ce5503ad8db2d Mon Sep 17 00:00:00 2001 From: Mark Simulacrum Date: Sat, 22 Jul 2017 07:35:42 -0600 Subject: [PATCH] Add make_run to distcheck. --- src/bootstrap/check.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index a07505edc2eb..fe24a666de2b 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;