Merge pull request #1853 from RT-Thread/fix_menuconfig
[tools] move import of pymenuconfig to pyconfig function
This commit is contained in:
commit
1f472cd1e1
|
@ -20,12 +20,11 @@
|
||||||
# Change Logs:
|
# Change Logs:
|
||||||
# Date Author Notes
|
# Date Author Notes
|
||||||
# 2017-12-29 Bernard The first version
|
# 2017-12-29 Bernard The first version
|
||||||
# 2018-07-31.....weety Support pyconfig
|
# 2018-07-31 weety Support pyconfig
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
import pymenuconfig
|
|
||||||
|
|
||||||
# make rtconfig.h from .config
|
# make rtconfig.h from .config
|
||||||
|
|
||||||
|
@ -227,6 +226,7 @@ def menuconfig(RTT_ROOT):
|
||||||
|
|
||||||
# pyconfig for windows and linux
|
# pyconfig for windows and linux
|
||||||
def pyconfig(RTT_ROOT):
|
def pyconfig(RTT_ROOT):
|
||||||
|
import pymenuconfig
|
||||||
|
|
||||||
touch_env()
|
touch_env()
|
||||||
env_dir = get_env_dir()
|
env_dir = get_env_dir()
|
||||||
|
|
Loading…
Reference in New Issue