diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/recipetool/create.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index ae599cbb70..1c71b24bfb 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py @@ -310,7 +310,9 @@ def guess_license(srctree): for fn in files: for spec in licspecs: if fnmatch.fnmatch(fn, spec): - licfiles.append(os.path.join(root, fn)) + fullpath = os.path.join(root, fn) + if not fullpath in licfiles: + licfiles.append(fullpath) for licfile in licfiles: md5value = bb.utils.md5_file(licfile) license = md5sums.get(md5value, 'Unknown') |