insane: remove unused variable assignment

(From OE-Core rev: 6b3cfcf90a0eb51356318f197faf6db4dc06a3e9)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2016-01-26 12:52:21 +00:00 committed by Richard Purdie
parent 44e9c3b779
commit 4ead707b6c
1 changed files with 4 additions and 6 deletions

View File

@ -727,19 +727,17 @@ def package_qa_check_license(workdir, d):
def package_qa_check_staged(path,d):
"""
Check staged la and pc files for sanity
-e.g. installed being false
Check staged la and pc files for common problems like references to the work
directory.
As this is run after every stage we should be able
to find the one responsible for the errors easily even
if we look at every .pc and .la file
As this is run after every stage we should be able to find the one
responsible for the errors easily even if we look at every .pc and .la file.
"""
sane = True
tmpdir = d.getVar('TMPDIR', True)
workdir = os.path.join(tmpdir, "work")
installed = "installed=yes"
if bb.data.inherits_class("native", d) or bb.data.inherits_class("cross", d):
pkgconfigcheck = workdir
else: