diff options
author | Sven Eckelmann <sven@narfation.org> | 2019-05-11 16:19:16 -0400 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-05-20 15:25:21 -0400 |
commit | e6d319f68d4dcf355e89a7b21368c47c004a14c2 (patch) | |
tree | e1f38e82306f021077899d41bfb082531ea354e5 /scripts | |
parent | fba388032cf260761e5e9b05e8c0dd93417a00b4 (diff) |
scripts/spdxcheck.py: Fix path to deprecated licenses
The directory name for other licenses was changed to "deprecated" in
commit 62be257e986d ("LICENSES: Rename other to deprecated"). But it was
not changed for spdxcheck.py. As result, checkpatch failed with
FAIL: "Blob or Tree named 'other' not found"
Traceback (most recent call last):
File "scripts/spdxcheck.py", line 240, in <module>
spdx = read_spdxdata(repo)
File "scripts/spdxcheck.py", line 41, in read_spdxdata
for el in lictree[d].traverse():
File "/usr/lib/python2.7/dist-packages/git/objects/tree.py", line 298, in __getitem__
return self.join(item)
File "/usr/lib/python2.7/dist-packages/git/objects/tree.py", line 244, in join
raise KeyError(msg % file)
KeyError: "Blob or Tree named 'other' not found"
Fixes: 62be257e986d ("LICENSES: Rename other to deprecated")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/spdxcheck.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/spdxcheck.py b/scripts/spdxcheck.py index 4fe392e507fb..1a39b34588b7 100755 --- a/scripts/spdxcheck.py +++ b/scripts/spdxcheck.py | |||
@@ -32,7 +32,7 @@ class SPDXdata(object): | |||
32 | def read_spdxdata(repo): | 32 | def read_spdxdata(repo): |
33 | 33 | ||
34 | # The subdirectories of LICENSES in the kernel source | 34 | # The subdirectories of LICENSES in the kernel source |
35 | license_dirs = [ "preferred", "other", "exceptions" ] | 35 | license_dirs = [ "preferred", "deprecated", "exceptions" ] |
36 | lictree = repo.head.commit.tree['LICENSES'] | 36 | lictree = repo.head.commit.tree['LICENSES'] |
37 | 37 | ||
38 | spdx = SPDXdata() | 38 | spdx = SPDXdata() |