From 3a309d20f2d3bc5af81b3601f7835bad064f5a98 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 11 Jun 2009 16:10:28 +0100 Subject: [PATCH] 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 --- meta/classes/packaged-staging.bbclass | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/classes/packaged-staging.bbclass b/meta/classes/packaged-staging.bbclass index 552245c9ee..4d32355f22 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)