Merge pull request #1853 from RT-Thread/fix_menuconfig

[tools] move import of pymenuconfig to pyconfig function
This commit is contained in:
Bernard Xiong 2018-09-30 09:22:46 +08:00 committed by GitHub
commit 1f472cd1e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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()