summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-19 11:13:42 -0800
committerGitHub <noreply@github.com>2017-01-19 11:13:42 -0800
commit10893a9a349cdd423f2490a6984acb5b3b7c8046 (patch)
tree106134ecd115ef74c6d4994e50fb34e60eed083c /src/bootstrap
parentad78c04a9a0abd5b2332b5046060f16edef2b05b (diff)
parent5466c1bc80ad7cf08d71e77e7af3d17a24b50f36 (diff)
downloadrust-1.15.0.tar.gz
rust-1.15.0.zip
Merge pull request #39189 from brson/beta-next 1.15.0
Beta next
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/check.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs
index 712c4c52baa..aa15825d829 100644
--- a/src/bootstrap/check.rs
+++ b/src/bootstrap/check.rs
@@ -13,6 +13,8 @@
 //! This file implements the various regression test suites that we execute on
 //! our CI.
 
+extern crate build_helper;
+
 use std::collections::HashSet;
 use std::env;
 use std::fmt;
@@ -543,7 +545,7 @@ pub fn distcheck(build: &Build) {
     build.run(&mut cmd);
     build.run(Command::new("./configure")
                      .current_dir(&dir));
-    build.run(Command::new("make")
+    build.run(Command::new(build_helper::make(&build.config.build))
                      .arg("check")
                      .current_dir(&dir));
 }