diff options
author | Tom Rini | 2019-12-06 15:31:31 -0500 |
---|---|---|
committer | Simon Glass | 2019-12-10 21:11:31 -0700 |
commit | d08c38c32f64498946230059bd4ec1431c23476a (patch) | |
tree | 59db2207e76812ba0e5ed6bf46d4ccf8f038773b /tools | |
parent | 57cb9d52397c9051d7b3d27bd107cce04a16846f (diff) |
buildman: Ignore blank lines during size checks
Today when parsing the .sizes files we get a warning about an invalid
line in the file as it's blank. Solve this by checking that we have a
non-blank line prior to processing.
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildman/builder.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index cfbe4c26b1a..784c64122ba 100644 --- a/tools/buildman/builder.py +++ b/tools/buildman/builder.py @@ -577,7 +577,8 @@ class Builder: sym = {} for line in fd.readlines(): try: - size, type, name = line[:-1].split() + if line.strip(): + size, type, name = line[:-1].split() except: Print("Invalid line in file '%s': '%s'" % (fname, line[:-1])) continue |