提交 7c9075df 编写于 作者: A ArdaFu

[tools]menuconfig.py. Fix config line split error when config line contains...

[tools]menuconfig.py. Fix config line split error when config line contains more then one equal marks.
上级 7bc305bd
......@@ -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:]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册