Skip to content

Commit

Permalink
Make sure openssl compiles with only one core
Browse files Browse the repository at this point in the history
Fixes #40417
  • Loading branch information
aidanhs committed Apr 26, 2017
1 parent 0369832 commit 367e907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ pub fn openssl(build: &Build, target: &str) {
println!("Configuring openssl for {}", target);
build.run_quiet(&mut configure);
println!("Building openssl for {}", target);
build.run_quiet(Command::new("make").current_dir(&obj));
build.run_quiet(Command::new("make").arg("-j1").current_dir(&obj));
println!("Installing openssl for {}", target);
build.run_quiet(Command::new("make").arg("install").current_dir(&obj));

Expand Down

0 comments on commit 367e907

Please sign in to comment.