From 6ab2c350b7ece99e29f3f6fb433e3ec795846dc0 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 14 May 2019 17:07:57 -0700 Subject: [PATCH] build: forward rustc '--cfg' flags correctly --- build_extra/rust/rust.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_extra/rust/rust.gni b/build_extra/rust/rust.gni index cd755d6d31..5862f4ad4e 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, ] } }