summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-04-26 19:20:25 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-29 19:35:57 +0100
commit99b89011f1e6d315823e9037e1ce579cf2a8ff34 (patch)
tree4f3b5984dfc5d2ae66ddd5cc32a617af1b43aadb /meta/classes
parent786f7eec7808b9b3e08cd4bc8ef1feeb362ffb3d (diff)
downloadpoky-99b89011f1e6d315823e9037e1ce579cf2a8ff34.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) (From OE-Core rev: 64d69eba87394f0fbf564da7c37dc6b1d2e7ec1b) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/insane.bbclass4
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
675def package_qa_check_license(workdir, d): 675def 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)