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
1 changed files with 7 additions and 1 deletions
|
@ -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 a new issue