From: Richard Purdie Date: Thu, 4 Feb 2016 12:38:50 +0000 (+0000) Subject: insane: Fix populate_sysroot sanity test path X-Git-Tag: 2016-4~1096 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3739aaf644d5a0f28e85fd07c67cecbfa5b8fb8a;p=openembedded-core.git 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. Signed-off-by: Richard Purdie --- 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 python do_qa_staging() { bb.note("QA checking staging") - if not package_qa_check_staged(d.expand('${SYSROOT_DESTDIR}${STAGING_LIBDIR}'), d): + if not package_qa_check_staged(d.expand('${SYSROOT_DESTDIR}${libdir}'), d): bb.fatal("QA staging was broken by the package built above") }