[PATCH] scripts/spdxcheck: Parse j2 comments correctly

Thomas Gleixner posted 1 patch 1 year, 2 months ago
scripts/spdxcheck.py |    3 +++
1 file changed, 3 insertions(+)
[PATCH] scripts/spdxcheck: Parse j2 comments correctly
Posted by Thomas Gleixner 1 year, 2 months ago
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>
---
 scripts/spdxcheck.py |    3 +++
 1 file changed, 3 insertions(+)

--- a/scripts/spdxcheck.py
+++ b/scripts/spdxcheck.py
@@ -217,6 +217,9 @@ import os
                 # 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
                 #