summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
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: