summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-01-26 16:00:13 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-01-26 16:00:13 +0000
commitfd34f26511deca0e5498292ebf2cb8f9f1e11e37 (patch)
tree866d7a44d692bccfd8930191b10c8c24abd0d071
parent684d263e75a6a7ede638afa60e35a238e24c12ba (diff)
downloadopenembedded-core-fd34f26511deca0e5498292ebf2cb8f9f1e11e37.tar.gz
insane.bbclass: Since we have no legacy packaging, no need to repeatedly scan staging
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-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 6cffca7892..913d88de64 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -477,7 +477,7 @@ addtask qa_staging after do_populate_sysroot before do_build
python do_qa_staging() {
bb.note("QA checking staging")
- if not package_qa_check_staged(bb.data.getVar('STAGING_LIBDIR',d,True), d):
+ if not package_qa_check_staged(bb.data.expand('${SYSROOT_DESTDIR}/${STAGING_LIBDIR}',d), d):
bb.fatal("QA staging was broken by the package built above")
}