]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
insane: remove unused variable assignment
authorRoss Burton <ross.burton@intel.com>
Tue, 26 Jan 2016 12:52:21 +0000 (12:52 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 26 Jan 2016 22:31:10 +0000 (22:31 +0000)
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/insane.bbclass

index 79d59d608b836249f61cb7405625b9d1925c489c..500a37ca0f73170d9fa977931c3b7dc5aafa829e 100644 (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: