diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-05-14 17:07:57 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-05-16 19:55:45 -0700 |
commit | 6ab2c350b7ece99e29f3f6fb433e3ec795846dc0 (patch) | |
tree | 382f37908f48505738f74e6f2b43f4ad6f4d687e | |
parent | 9c9c58c84d1b4eb75003533d5879cf4d79694969 (diff) |
build: forward rustc '--cfg' flags correctly
-rw-r--r-- | build_extra/rust/rust.gni | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_extra/rust/rust.gni b/build_extra/rust/rust.gni index cd755d6d3..5862f4ad4 100644 --- a/build_extra/rust/rust.gni +++ b/build_extra/rust/rust.gni @@ -228,7 +228,7 @@ template("rust_crate") { foreach(c, cfg) { args += [ "--cfg", - "c", + c, ] } } |