rtems-bsp-builder: Fix the counts to accumulate.

This commit is contained in:
Chris Johns
2017-03-28 10:20:14 +11:00
parent 7ef4c2b64a
commit bce090b242

View File

@@ -403,7 +403,7 @@ class build:
counts['h'] += 1
for f in self.counts:
if f in counts:
self.counts[f] = counts[f]
self.counts[f] += counts[f]
return counts
def build_arch_bsp(self, arch, bsp):