From ea35218d2add408400966ce1c34b388f418c0ff5 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 5d4b5041e..72b102672 100755 --- a/tools/kconfig_new/confgen.py +++ b/tools/kconfig_new/confgen.py @@ -408,6 +408,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))