diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-03-09 17:48:50 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-09 16:59:56 +0000 |
commit | 103b4d26b340cbdf70bf43906e293f3497671fdc (patch) | |
tree | 8a6515567a9d2bff60556b934a5a81dbc95d9e7b | |
parent | 5614c5ae6a004d4367eccc34dd3cc7ee61fb7e57 (diff) | |
download | openembedded-core-103b4d26b340cbdf70bf43906e293f3497671fdc.tar.gz openembedded-core-103b4d26b340cbdf70bf43906e293f3497671fdc.tar.bz2 openembedded-core-103b4d26b340cbdf70bf43906e293f3497671fdc.zip |
recipetool: create: match *LICENSE* as a license file
For example, this picks up a file named MIT-LICENSE.txt.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/recipetool/create.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index a77c1910db..def2eea9fa 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py @@ -722,7 +722,7 @@ def guess_license(srctree): md5sums = get_license_md5sums(tinfoil.config_data) licenses = [] - licspecs = ['LICENSE*', 'COPYING*', '*[Ll]icense*', 'LICENCE*', 'LEGAL*', '[Ll]egal*', '*GPL*', 'README.lic*', 'COPYRIGHT*', '[Cc]opyright*'] + licspecs = ['*LICEN[CS]E*', 'COPYING*', '*[Ll]icense*', 'LEGAL*', '[Ll]egal*', '*GPL*', 'README.lic*', 'COPYRIGHT*', '[Cc]opyright*'] licfiles = [] for root, dirs, files in os.walk(srctree): for fn in files: |