From: Robert Yang Date: Wed, 27 Apr 2016 02:20:25 +0000 (-0700) Subject: insane.bbclass: remove workdir from package_qa_check_license() X-Git-Tag: uninative-1.0~187 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9da177c149c657dc337a1f0d241175f1496fa07d;p=openembedded-core.git insane.bbclass: remove workdir from package_qa_check_license() The parameter workdir is not used in package_qa_check_license() Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- 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): trimmed = path.replace(os.path.join (d.getVar("PKGDEST", True), name), "") package_qa_add_message(messages, "symlink-to-sysroot", "Symlink %s in %s points to TMPDIR" % (trimmed, name)) -def package_qa_check_license(workdir, d): +def package_qa_check_license(d): """ Check for changes in the license files """ @@ -1211,7 +1211,7 @@ Missing inherit gettext?""" % (gt, config)) # Check license variables ########################################################################### - package_qa_check_license(workdir, d) + package_qa_check_license(d) ########################################################################### # Check unrecognised configure options (with a white list)