From 935b34e829880efb6f83352a32f66e86d155754e Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Wed, 12 Feb 2020 14:25:15 +0100 Subject: [PATCH] confgen.py: Escape special characters for cmake Closes https://github.com/espressif/esp-idf/issues/4751 --- tools/kconfig_new/confgen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/kconfig_new/confgen.py b/tools/kconfig_new/confgen.py index 77feae5b33..605104db85 100755 --- a/tools/kconfig_new/confgen.py +++ b/tools/kconfig_new/confgen.py @@ -417,6 +417,8 @@ def write_cmake(deprecated_options, config, filename): val = sym.str_value if sym.orig_type in (kconfiglib.BOOL, kconfiglib.TRISTATE) and val == "n": val = "" # write unset values as empty variables + elif sym.orig_type == kconfiglib.STRING: + val = kconfiglib.escape(val) write("set({}{} \"{}\")\n".format( prefix, sym.name, val))