Skip to content

Commit

Permalink
fix rustflags being concatenated without spaces between them
Browse files Browse the repository at this point in the history
  • Loading branch information
pietroalbini committed Oct 9, 2019
1 parent 0f58781 commit e2cf6f2
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 e2cf6f2

Please sign in to comment.