Skip to content

Commit

Permalink
Disable initial values of make.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatyas committed Jul 28, 2015
1 parent 1784537 commit 15076be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Expand Up @@ -8,7 +8,7 @@ use std::process::{Command, Stdio};
fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let result = Command::new("make")
.args(&["-f", "makefile.cargo"])
.args(&["-R", "-f", "makefile.cargo"])
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
.status()
Expand Down

0 comments on commit 15076be

Please sign in to comment.