From 531a427d8810792df4c77f10c42945e2f7663ffb Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 25 Sep 2018 14:48:07 -0700 Subject: build: do not quote cc_wrapper on windows This brings behavior inline with the unix toolchain, which also leaves cc_wrapper unquoted. If necessary, add quotes in the setup phase instead. --- build_extra/toolchain/win/mods.gni | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build_extra') diff --git a/build_extra/toolchain/win/mods.gni b/build_extra/toolchain/win/mods.gni index 5355d7f9a..30a936051 100644 --- a/build_extra/toolchain/win/mods.gni +++ b/build_extra/toolchain/win/mods.gni @@ -20,9 +20,9 @@ import("//build/toolchain/cc_wrapper.gni") # Some python scripts that are run by BUILD.gni live here. base_toolchain_dir = "//build/toolchain/win" -# If cc_wrapper if is set, wrap it in quotes and add a space to it. +# If cc_wrapper if is set, add a space to it. if (cc_wrapper == "") { cc_wrapper_prefix = "" } else { - cc_wrapper_prefix = "\"$cc_wrapper\" " + cc_wrapper_prefix = "$cc_wrapper " } -- cgit v1.2.3