Skip to content

Commit

Permalink
Merge pull request #270 from DelSkayn/fix-hanging-build-on-macos
Browse files Browse the repository at this point in the history
Fix hanging build on macos
  • Loading branch information
DelSkayn authored Feb 21, 2024
2 parents 9716bbb + 47f3bda commit 7b0fdd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ fn feature_to_define(name: impl AsRef<str>) -> String {

fn patch<D: AsRef<Path>, P: AsRef<Path>>(out_dir: D, patch: P) {
let mut child = Command::new("patch")
.args(["-p1"])
.args(["-p1", "-f"])
.stdin(Stdio::piped())
.current_dir(out_dir)
.spawn()
Expand Down

0 comments on commit 7b0fdd7

Please sign in to comment.