diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/recipetool/create.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index 893980a5ce..87b25ebc7e 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -1126,9 +1126,10 @@ def guess_license(srctree, d): | |||
1126 | license = md5sums.get(md5value, None) | 1126 | license = md5sums.get(md5value, None) |
1127 | if not license: | 1127 | if not license: |
1128 | license, crunched_md5, lictext = crunch_license(licfile) | 1128 | license, crunched_md5, lictext = crunch_license(licfile) |
1129 | if not license: | 1129 | if lictext and not license: |
1130 | license = 'Unknown' | 1130 | license = 'Unknown' |
1131 | licenses.append((license, os.path.relpath(licfile, srctree), md5value)) | 1131 | if license: |
1132 | licenses.append((license, os.path.relpath(licfile, srctree), md5value)) | ||
1132 | 1133 | ||
1133 | # FIXME should we grab at least one source file with a license header and add that too? | 1134 | # FIXME should we grab at least one source file with a license header and add that too? |
1134 | 1135 | ||