summary refs log tree commit diff
path: root/src/liballoc_jemalloc
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/liballoc_jemalloc
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/liballoc_jemalloc')
-rw-r--r--src/liballoc_jemalloc/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc_jemalloc/build.rs b/src/liballoc_jemalloc/build.rs
index fc849e7a50c..60b7875a97c 100644
--- a/src/liballoc_jemalloc/build.rs
+++ b/src/liballoc_jemalloc/build.rs
@@ -151,7 +151,7 @@ fn main() {
     cmd.arg(format!("--build={}", build_helper::gnu_target(&host)));
 
     run(&mut cmd);
-    let mut make = Command::new("make");
+    let mut make = Command::new(build_helper::make(&host));
     make.current_dir(&build_dir)
         .arg("build_lib_static");