Skip to content

Commit 8a6fcb5

Browse files
Merge pull request #427 from pietroalbini/fix-wrong-rustflags
Fix rustflags being concatenated without spaces between them
2 parents b4e9a23 + e2cf6f2 commit 8a6fcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docbuilder/rustwide_builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ impl RustwideBuilder {
398398
"RUSTFLAGS",
399399
metadata
400400
.rustc_args
401-
.map(|args| args.join(""))
401+
.map(|args| args.join(" "))
402402
.unwrap_or("".to_owned()),
403403
)
404404
.env("RUSTDOCFLAGS", rustdoc_flags.join(" "))

0 commit comments

Comments
 (0)