mirror of
https://git.rtems.org/rtems-tools/
synced 2025-10-16 04:50:56 +08:00
rtems-bsp-builder: Fix the counts to accumulate.
This commit is contained in:
@@ -403,7 +403,7 @@ class build:
|
|||||||
counts['h'] += 1
|
counts['h'] += 1
|
||||||
for f in self.counts:
|
for f in self.counts:
|
||||||
if f in counts:
|
if f in counts:
|
||||||
self.counts[f] = counts[f]
|
self.counts[f] += counts[f]
|
||||||
return counts
|
return counts
|
||||||
|
|
||||||
def build_arch_bsp(self, arch, bsp):
|
def build_arch_bsp(self, arch, bsp):
|
||||||
|
Reference in New Issue
Block a user