summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-08-08 15:51:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-13 09:27:38 +0100
commit659c8b5267dc2220f67bfcb4ae2df91ae5052cdc (patch)
tree026ea3a159aaca34b53e18fec478ededfad6c020 /meta/classes/insane.bbclass
parente32bfb80664fd0cd28d3ebd6f0229b9e0a8336c7 (diff)
downloadpoky-659c8b5267dc2220f67bfcb4ae2df91ae5052cdc.tar.gz
insane: remove last remnants of unsafe-references-in-binaries check
The test itself was removed but there were a few explicit checks and dependencies for it, so remove those too. (From OE-Core rev: 3a2feef644abff4feff371cc7175ac270f5fb671) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass9
1 files changed, 0 insertions, 9 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 022b917a7c..b7177c9b32 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -18,11 +18,6 @@
18# files under exec_prefix 18# files under exec_prefix
19 19
20 20
21# unsafe-references-in-binaries requires prelink-rtld from
22# prelink-native, but we don't want this DEPENDS for -native builds
23QADEPENDS = "prelink-native"
24QADEPENDS_class-native = ""
25QADEPENDS_class-nativesdk = ""
26QA_SANE = "True" 21QA_SANE = "True"
27 22
28# Elect whether a given type of error is a warning or error, they may 23# Elect whether a given type of error is a warning or error, they may
@@ -1088,8 +1083,6 @@ python do_package_qa () {
1088 continue 1083 continue
1089 if w in testmatrix and testmatrix[w] in g: 1084 if w in testmatrix and testmatrix[w] in g:
1090 warnchecks.append(g[testmatrix[w]]) 1085 warnchecks.append(g[testmatrix[w]])
1091 if w == 'unsafe-references-in-binaries':
1092 oe.utils.write_ld_so_conf(d)
1093 1086
1094 errorchecks = [] 1087 errorchecks = []
1095 for e in (d.getVar("ERROR_QA") or "").split(): 1088 for e in (d.getVar("ERROR_QA") or "").split():
@@ -1097,8 +1090,6 @@ python do_package_qa () {
1097 continue 1090 continue
1098 if e in testmatrix and testmatrix[e] in g: 1091 if e in testmatrix and testmatrix[e] in g:
1099 errorchecks.append(g[testmatrix[e]]) 1092 errorchecks.append(g[testmatrix[e]])
1100 if e == 'unsafe-references-in-binaries':
1101 oe.utils.write_ld_so_conf(d)
1102 return warnchecks, errorchecks 1093 return warnchecks, errorchecks
1103 1094
1104 for package in packages: 1095 for package in packages: