[08/11] utils: ipc: extract-docs: Work around reuse tool problem
diff mbox series

Message ID 20260405191443.1209948-9-laurent.pinchart@ideasonboard.com
State New
Headers show
Series
  • libcamera: Fix missing license information
Related show

Commit Message

Laurent Pinchart April 5, 2026, 7:14 p.m. UTC
The reuse tool fails to lint the extract-docs.py file because it
considers the 'SPDX-License-Identifier' string in a regex as a malformed
license identifier. Work around the issue by adding parentheses in the
regular expression, which doesn't affect the behaviour of the regex
matching but prevents the reuse tool from seeing the line.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 utils/codegen/ipc/extract-docs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch
diff mbox series

diff --git a/utils/codegen/ipc/extract-docs.py b/utils/codegen/ipc/extract-docs.py
index 61f44caef52a..c51c4ab01a81 100755
--- a/utils/codegen/ipc/extract-docs.py
+++ b/utils/codegen/ipc/extract-docs.py
@@ -12,7 +12,7 @@  import sys
 
 regex_block_start = re.compile(r'^/\*\*$')
 regex_block_end = re.compile(r'^ \*/$')
-regex_spdx = re.compile(r'^/\* SPDX-License-Identifier: .* \*/$')
+regex_spdx = re.compile(r'^/\* (SPDX)-License-Identifier: .* \*/$')
 
 
 def main(argv):