]> code.ossystems Code Review - openembedded-core.git/commitdiff
insane.bbclass: Since we have no legacy packaging, no need to repeatedly scan staging
authorRichard Purdie <rpurdie@linux.intel.com>
Tue, 26 Jan 2010 16:00:13 +0000 (16:00 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 26 Jan 2010 16:00:13 +0000 (16:00 +0000)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
meta/classes/insane.bbclass

index 6cffca78928e4140f2dbb817babba8b739bdc426..913d88de64827bc4648c5477c51464e4a0816e31 100644 (file)
@@ -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")
 }