Tools: Be more clear that we're matching the BSD 1-Clause license.

This commit is contained in:
Gerald Combs 2022-01-01 15:16:59 -08:00
parent b1bf0db069
commit 6cdb86fbc7
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ Examples:
ALLOWED_LICENSES = [
'BSD',
'BSD (1 clause)',
'BSD (2 clause)',
'BSD (2 clause) GPL (v2 or later)',
'BSD (3 clause)',

View File

@ -702,7 +702,7 @@ sub parselicense {
}
if ($licensetext =~ /SPDX-License-Identifier:\s+BSD-1-Clause/i) {
$license = 'BSD';
$license = 'BSD (1 clause)';
}
if ($licensetext =~ /SPDX-License-Identifier:\s+MIT/i) {