mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
buildman: fix to display warning message for missing [toolchain] section
Toolchains.__init__ is expected to display a warning message when the [toolchain] section is missing from ~/.buildman file. But it never works. In that case, instead, buildmain fails with an error message which is difficult to understand: Traceback (most recent call last): File "tools/buildman/buildman", line 126, in <module> control.DoBuildman(options, args) File "/home/foo/u-boot/tools/buildman/control.py", line 78, in DoBuildman toolchains = toolchain.Toolchains() File "/home/foo/u-boot/tools/buildman/toolchain.py", line 106, in __init__ config_fname) NameError: global name 'config_fname' is not defined Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
15a7737515
commit
1826a18d8d
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class Toolchains:
|
||||||
if not toolchains:
|
if not toolchains:
|
||||||
print ("Warning: No tool chains - please add a [toolchain] section"
|
print ("Warning: No tool chains - please add a [toolchain] section"
|
||||||
" to your buildman config file %s. See README for details" %
|
" to your buildman config file %s. See README for details" %
|
||||||
config_fname)
|
bsettings.config_fname)
|
||||||
|
|
||||||
for name, value in toolchains:
|
for name, value in toolchains:
|
||||||
if '*' in value:
|
if '*' in value:
|
||||||
|
|
Loading…
Add table
Reference in a new issue