diff options
Diffstat (limited to 'scripts/lib/recipetool')
-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 ea2ef5be63..94d52d6077 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -1250,7 +1250,7 @@ def match_licenses(licfiles, srctree, d): | |||
1250 | license = 'Unknown' | 1250 | license = 'Unknown' |
1251 | logger.info("Please add the following line for '%s' to a 'lib/recipetool/licenses.csv' " \ | 1251 | logger.info("Please add the following line for '%s' to a 'lib/recipetool/licenses.csv' " \ |
1252 | "and replace `Unknown` with the license:\n" \ | 1252 | "and replace `Unknown` with the license:\n" \ |
1253 | "%s,Unknown" % (os.path.relpath(licfile, srctree), md5value)) | 1253 | "%s,Unknown" % (os.path.relpath(licfile, srctree + "/.."), md5value)) |
1254 | if license: | 1254 | if license: |
1255 | licenses.append((license, os.path.relpath(licfile, srctree), md5value)) | 1255 | licenses.append((license, os.path.relpath(licfile, srctree), md5value)) |
1256 | 1256 | ||