Skip to content

Commit

Permalink
Merge pull request #427 from pietroalbini/fix-wrong-rustflags
Browse files Browse the repository at this point in the history
Fix rustflags being concatenated without spaces between them
  • Loading branch information
Mark-Simulacrum authored Oct 9, 2019
2 parents b4e9a23 + e2cf6f2 commit 8a6fcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docbuilder/rustwide_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ impl RustwideBuilder {
"RUSTFLAGS",
metadata
.rustc_args
.map(|args| args.join(""))
.map(|args| args.join(" "))
.unwrap_or("".to_owned()),
)
.env("RUSTDOCFLAGS", rustdoc_flags.join(" "))
Expand Down

0 comments on commit 8a6fcb5

Please sign in to comment.