diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-04-26 19:20:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:31:14 +0100 |
commit | 0bf6d578b4e8fedafe377795d05a17e9e4751021 (patch) | |
tree | bf280f83c205cdd90d6277b8530c6570a7c1bf4e | |
parent | 30ba663e35393eb65b8c179025a40ad645abc6f8 (diff) | |
download | poky-0bf6d578b4e8fedafe377795d05a17e9e4751021.tar.gz |
insane.bbclass: remove workdir from package_qa_check_license()
The parameter workdir is not used in package_qa_check_license()
(From OE-Core rev: 9da177c149c657dc337a1f0d241175f1496fa07d)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index c57b21735d..a1d23d055b 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -672,7 +672,7 @@ def package_qa_check_symlink_to_sysroot(path, name, d, elf, messages): | |||
672 | trimmed = path.replace(os.path.join (d.getVar("PKGDEST", True), name), "") | 672 | trimmed = path.replace(os.path.join (d.getVar("PKGDEST", True), name), "") |
673 | package_qa_add_message(messages, "symlink-to-sysroot", "Symlink %s in %s points to TMPDIR" % (trimmed, name)) | 673 | package_qa_add_message(messages, "symlink-to-sysroot", "Symlink %s in %s points to TMPDIR" % (trimmed, name)) |
674 | 674 | ||
675 | def package_qa_check_license(workdir, d): | 675 | def package_qa_check_license(d): |
676 | """ | 676 | """ |
677 | Check for changes in the license files | 677 | Check for changes in the license files |
678 | """ | 678 | """ |
@@ -1211,7 +1211,7 @@ Missing inherit gettext?""" % (gt, config)) | |||
1211 | # Check license variables | 1211 | # Check license variables |
1212 | ########################################################################### | 1212 | ########################################################################### |
1213 | 1213 | ||
1214 | package_qa_check_license(workdir, d) | 1214 | package_qa_check_license(d) |
1215 | 1215 | ||
1216 | ########################################################################### | 1216 | ########################################################################### |
1217 | # Check unrecognised configure options (with a white list) | 1217 | # Check unrecognised configure options (with a white list) |