mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/use_local_kconfiglib_v3.0' into 'release/v3.0'
Use kconfiglib from $IDF_PATH/tools/kconfig_new (v3.0) See merge request espressif/esp-idf!6083
This commit is contained in:
commit
b834deea16
@ -29,7 +29,13 @@
|
||||
|
||||
|
||||
import os
|
||||
import kconfiglib
|
||||
import sys
|
||||
|
||||
try:
|
||||
from . import kconfiglib
|
||||
except Exception:
|
||||
sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)))
|
||||
import kconfiglib
|
||||
|
||||
# Indentation to be used in the generated file
|
||||
INDENT = ' '
|
||||
|
Loading…
Reference in New Issue
Block a user