Merge pull request #946 from ArdaFu/master

[tools] menuconfig.py. Fix config line split error.
This commit is contained in:
Bernard Xiong 2017-11-03 15:59:31 +08:00 committed by GitHub
commit 856a337b6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def mk_rtconfig(filename):
empty_line = 0
else:
empty_line = 0
setting = line.split('=')
setting = line.split('=', 1)
if len(setting) >= 2:
if setting[0].startswith('CONFIG_'):
setting[0] = setting[0][7:]