]> code.ossystems Code Review - openembedded-core.git/commitdiff
insane: remove last remnants of unsafe-references-in-binaries check
authorRoss Burton <ross.burton@intel.com>
Tue, 8 Aug 2017 14:51:02 +0000 (15:51 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 10 Aug 2017 23:08:32 +0000 (00:08 +0100)
The test itself was removed but there were a few explicit checks and
dependencies for it, so remove those too.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/insane.bbclass

index 022b917a7c6ee99ce7ec53c8482555250a2fd2b4..b7177c9b32966765d07de34970c3dc2d4ce7f689 100644 (file)
 #   files under exec_prefix
 
 
-# unsafe-references-in-binaries requires prelink-rtld from
-# prelink-native, but we don't want this DEPENDS for -native builds
-QADEPENDS = "prelink-native"
-QADEPENDS_class-native = ""
-QADEPENDS_class-nativesdk = ""
 QA_SANE = "True"
 
 # Elect whether a given type of error is a warning or error, they may
@@ -1088,8 +1083,6 @@ python do_package_qa () {
                continue
             if w in testmatrix and testmatrix[w] in g:
                 warnchecks.append(g[testmatrix[w]])
-            if w == 'unsafe-references-in-binaries':
-                oe.utils.write_ld_so_conf(d)
 
         errorchecks = []
         for e in (d.getVar("ERROR_QA") or "").split():
@@ -1097,8 +1090,6 @@ python do_package_qa () {
                continue
             if e in testmatrix and testmatrix[e] in g:
                 errorchecks.append(g[testmatrix[e]])
-            if e == 'unsafe-references-in-binaries':
-                oe.utils.write_ld_so_conf(d)
         return warnchecks, errorchecks
 
     for package in packages: