[<prev] [next>] [day] [month] [year] [list]
Message-ID: <878qt2xr46.ffs@tglx>
Date: Fri, 29 Nov 2024 11:37:45 +0100
From: Thomas Gleixner <tglx@...utronix.de>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Subject: [PATCH] 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@...utronix.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
#
Powered by blists - more mailing lists