summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-04 12:38:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-04 23:40:23 +0000
commit86851d543bd9c83b10b640d42a9b839506dfcdc0 (patch)
tree6f66550db04f21b9b59884a0e4da0c8507e346d1 /meta/classes/insane.bbclass
parentd09a25e8628ce41f50a4a908d3d44cd774000267 (diff)
downloadpoky-86851d543bd9c83b10b640d42a9b839506dfcdc0.tar.gz
insane: Fix populate_sysroot sanity test path
This was correct for native/cross paths but not for target ones which meant the tests weren't running in some cases. Fix the path to be correct in both cases. (From OE-Core rev: 3739aaf644d5a0f28e85fd07c67cecbfa5b8fb8a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index c70e887d52..47b441ad75 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -1130,7 +1130,7 @@ addtask do_package_qa_setscene
1130python do_qa_staging() { 1130python do_qa_staging() {
1131 bb.note("QA checking staging") 1131 bb.note("QA checking staging")
1132 1132
1133 if not package_qa_check_staged(d.expand('${SYSROOT_DESTDIR}${STAGING_LIBDIR}'), d): 1133 if not package_qa_check_staged(d.expand('${SYSROOT_DESTDIR}${libdir}'), d):
1134 bb.fatal("QA staging was broken by the package built above") 1134 bb.fatal("QA staging was broken by the package built above")
1135} 1135}
1136 1136