kopia lustrzana https://github.com/espressif/esp-idf
Merge branch 'bugfix/kconfig_cmake_escape' into 'master'
confgen.py: Escape special characters for cmake Closes IDFGH-2677 See merge request espressif/esp-idf!7580pull/4797/head
commit
b92882a0e6
|
@ -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))
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue