mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
tools/genboardscfg.py: fix a bug of MAINTAINERS handling
This patch fixes a minor problem: If a block without "F: configs/*_defconfig" is followed by another block with "F: configs/*_defconfig", the maintainers from the former block are squashed into the latter. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
124c599875
commit
9c2d60c378
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ class MaintainersDatabase:
|
|||
targets.append(front)
|
||||
elif tag == 'S:':
|
||||
status = rest
|
||||
elif line == '\n' and targets:
|
||||
elif line == '\n':
|
||||
for target in targets:
|
||||
self.database[target] = (status, maintainers)
|
||||
targets = []
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue