Skip to content

Commit

Permalink
build.rs: Remove DEBUG environment variable to prevent spurious build…
Browse files Browse the repository at this point in the history
… failures
  • Loading branch information
vkleen committed Aug 29, 2022
1 parent 4546bc3 commit b7db111
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ fn build_afl(out_dir: &Path) {
// build just the runtime to avoid troubles with Xcode clang on macOS
.env("NO_BUILD", "1")
.env("DESTDIR", out_dir)
.env("PREFIX", "");
.env("PREFIX", "")
.env_remove("DEBUG");
let status = command.status().expect("could not run 'make'");
assert!(status.success());
}
Expand Down

0 comments on commit b7db111

Please sign in to comment.