summaryrefslogtreecommitdiff
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-06-11 16:10:28 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-06-11 16:10:28 +0100
commit3a309d20f2d3bc5af81b3601f7835bad064f5a98 (patch)
tree2883ce4d6a2645a20cb216b6442277fa2797bf9a /meta/classes
parent1f4391bdd98d68a3caac01de8eba5dbc32f6b7fd (diff)
downloadopenembedded-core-3a309d20f2d3bc5af81b3601f7835bad064f5a98.tar.gz
openembedded-core-3a309d20f2d3bc5af81b3601f7835bad064f5a98.tar.bz2
openembedded-core-3a309d20f2d3bc5af81b3601f7835bad064f5a98.tar.xz
openembedded-core-3a309d20f2d3bc5af81b3601f7835bad064f5a98.zip
packaged-staging.bbckass: Add option of setting PSTAGE_BROKEN_DESTDIR to disable packaged staging acceleration for packages with broken DESTDIR handling
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/packaged-staging.bbclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/packaged-staging.bbclass b/meta/classes/packaged-staging.bbclass
index 552245c9e..4d32355f2 100644
--- a/meta/classes/packaged-staging.bbclass
+++ b/meta/classes/packaged-staging.bbclass
@@ -73,8 +73,10 @@ python () {
stagefunc = bb.data.getVar('do_stage', d, 1).strip()
if stagefunc == "autotools_stage_all":
fastpath = True
- if stagefunc == "do_stage_native" and bb.data.getVar('AUTOTOOLS_NATIVE_STAGE_INSTALL', d, 1) == "1":
+ elif stagefunc == "do_stage_native" and bb.data.getVar('AUTOTOOLS_NATIVE_STAGE_INSTALL', d, 1) == "1":
fastpath = True
+ if bb.data.getVar('PSTAGE_BROKEN_DESTDIR', d, 1) == "1":
+ fastpath = False
if fastpath:
#bb.note("Can optimise " + bb.data.getVar('FILE', d, 1))
bb.data.setVar("PSTAGING_NEEDSTAMP", "0", d)
@@ -325,6 +327,7 @@ autotools_staging_pstage () {
do_populate_staging[dirs] =+ "${DEPLOY_DIR_PSTAGE}"
python do_populate_staging_prepend() {
needstamp = bb.data.getVar("PSTAGING_NEEDSTAMP", d, 1)
+ pstageactive = bb.data.getVar("PSTAGING_ACTIVE", d, True)
lock = bb.data.expand("${STAGING_DIR}/staging.lock", d)
if needstamp == "1":
stamplock = bb.utils.lockfile(lock)
@@ -335,7 +338,7 @@ python do_populate_staging_append() {
if needstamp == "1":
bb.build.exec_func("populate_staging_postamble", d)
bb.utils.unlockfile(stamplock)
- else:
+ elif pstageactive == "1":
stamplock = bb.utils.lockfile(lock)
bb.build.exec_func("autotools_staging_pstage", d)
bb.utils.unlockfile(stamplock)