scripts/spdxcheck: Parse j2 comments correctly

j2 files use '#}' as comment closure, which trips up the SPDX
parser:

 tools/.../definition.j2: 1:36 Invalid token: #}

Handle those comments correctly by removing the closure.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/878qt2xr46.ffs@tglx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Thomas Gleixner
2024-11-29 11:37:45 +01:00
committed by Greg Kroah-Hartman
parent c301e1fefc
commit 634d34e856

View File

@@ -217,6 +217,9 @@ class id_parser(object):
# Special case for SH magic boot code files
if line.startswith('LIST \"'):
expr = expr.rstrip('\"').strip()
# Remove j2 comment closure
if line.startswith('{#'):
expr = expr.rstrip('#}').strip()
self.parse(expr)
self.spdx_valid += 1
#