aboutsummaryrefslogtreecommitdiff
path: root/tools/buildman/builder.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-12-12 08:18:59 -0500
committerTom Rini <trini@konsulko.com>2019-12-12 08:18:59 -0500
commit553cb06887825314e74a9bdac337467c77d1db88 (patch)
tree0c73f29d194d17a52ed7a4480f68b13f162147ca /tools/buildman/builder.py
parentf39abbbc531eb7b246d83dbb765e65afcc0989f8 (diff)
parentb4f98b3b16ec513f7fa6b97ec49792a5e99ec165 (diff)
Merge tag 'dm-next-13dec19' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm into next
buildman improvements including toolchain environment feature sandbox unicode support in serial
Diffstat (limited to 'tools/buildman/builder.py')
-rw-r--r--tools/buildman/builder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py
index cfbe4c26b1..784c64122b 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