diff options
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index ebf92ac621..7ac945d4cd 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -1094,12 +1094,17 @@ python do_package_qa () { | |||
1094 | continue | 1094 | continue |
1095 | if w in testmatrix and testmatrix[w] in g: | 1095 | if w in testmatrix and testmatrix[w] in g: |
1096 | warnchecks.append(g[testmatrix[w]]) | 1096 | warnchecks.append(g[testmatrix[w]]) |
1097 | if w == 'unsafe-references-in-binaries': | ||
1098 | oe.utils.write_ld_so_conf(d) | ||
1099 | |||
1097 | errorchecks = [] | 1100 | errorchecks = [] |
1098 | for e in (d.getVar("ERROR_QA", True) or "").split(): | 1101 | for e in (d.getVar("ERROR_QA", True) or "").split(): |
1099 | if e in skip: | 1102 | if e in skip: |
1100 | continue | 1103 | continue |
1101 | if e in testmatrix and testmatrix[e] in g: | 1104 | if e in testmatrix and testmatrix[e] in g: |
1102 | errorchecks.append(g[testmatrix[e]]) | 1105 | errorchecks.append(g[testmatrix[e]]) |
1106 | if e == 'unsafe-references-in-binaries': | ||
1107 | oe.utils.write_ld_so_conf(d) | ||
1103 | 1108 | ||
1104 | bb.note("Checking Package: %s" % package) | 1109 | bb.note("Checking Package: %s" % package) |
1105 | # Check package name | 1110 | # Check package name |