Skip to content

Commit

Permalink
Merge #148
Browse files Browse the repository at this point in the history
148: Fix RUSTFLAGS separator r=stlankes a=mkroening



Co-authored-by: Martin Kröning <mkroening@posteo.net>
  • Loading branch information
bors[bot] and mkroening authored Jul 18, 2021
2 parents ecf9c76 + 8cb9d98 commit abd8d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hermit-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn build_hermit(src_dir: &Path, target_dir_opt: Option<&Path>) {
}
}

cmd.env("RUSTFLAGS", rustflags.join(","));
cmd.env("RUSTFLAGS", rustflags.join(" "));

let status = cmd.status().expect("failed to start kernel build");
assert!(status.success());
Expand Down

0 comments on commit abd8d5b

Please sign in to comment.