summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2019-05-14 17:07:57 -0700
committerBert Belder <bertbelder@gmail.com>2019-05-16 19:55:45 -0700
commit6ab2c350b7ece99e29f3f6fb433e3ec795846dc0 (patch)
tree382f37908f48505738f74e6f2b43f4ad6f4d687e
parent9c9c58c84d1b4eb75003533d5879cf4d79694969 (diff)
build: forward rustc '--cfg' flags correctly
-rw-r--r--build_extra/rust/rust.gni2
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,
]
}
}