scripts/spdxcheck.py: handle license identifiers in XML comments
authorLukas Bulwahn <lukas.bulwahn@gmail.com>
Sat, 26 Sep 2020 19:03:54 +0000 (21:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Oct 2020 09:31:26 +0000 (11:31 +0200)
commit26b6507bf0731ad52661f752664ee4b3e65813d4
tree6f025e0e99db0461d5ae10deeec9529025a004f6
parent8a87dd20bebf19474aebb588901354bf4f0f57e2
scripts/spdxcheck.py: handle license identifiers in XML comments

Commit 996387b6ff2d ("media: docs: use the new SPDX header for GFDL-1.1 on
*.svg files") adds SPDX-License-Identifiers enclosed in XML comments,
i.e., <!-- ... -->, for svg files.

Unfortunately, ./scripts/spdxcheck.py does not handle
SPDX-License-Identifiers in XML comments, so it simply fails on checking
these files with 'Invalid License ID: --'.

Strip the XML comment ending simply by copying how it was done for comments
in C. With that, ./scripts/spdxcheck.py handles the svg files properly.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/spdxcheck.py