summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-04-23 08:43:53 +0000
committerRichard Purdie <richard@openedhand.com>2008-04-23 08:43:53 +0000
commitc7005b754083ba6a30994967b935ed9a764601b4 (patch)
treee43d1b4a940353ce6089d772815124d57b0b9c4f /meta
parent1cea70a354f155c2e802d1cd1b8d3218c099695b (diff)
downloadopenembedded-core-c7005b754083ba6a30994967b935ed9a764601b4.tar.gz
openembedded-core-c7005b754083ba6a30994967b935ed9a764601b4.tar.bz2
openembedded-core-c7005b754083ba6a30994967b935ed9a764601b4.tar.xz
openembedded-core-c7005b754083ba6a30994967b935ed9a764601b4.zip
packaged-staging: Make sure the task is part of the default tasks chain
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4314 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/packaged-staging.bbclass12
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/classes/packaged-staging.bbclass b/meta/classes/packaged-staging.bbclass
index bb166cb2f..1df2a2c9f 100644
--- a/meta/classes/packaged-staging.bbclass
+++ b/meta/classes/packaged-staging.bbclass
@@ -201,7 +201,7 @@ populate_staging_preamble () {
populate_staging_postamble () {
if [ "$PSTAGING_ACTIVE" = "1" ]; then
# list the packages currently installed in staging
- ${PSTAGE_LIST_CMD} | awk '{print $1}' > ${DEPLOY_DIR_PSTAGE}/installed-list
+ # ${PSTAGE_LIST_CMD} | awk '{print $1}' > ${DEPLOY_DIR_PSTAGE}/installed-list
set +e
stage-manager -p ${STAGING_DIR} -c ${DEPLOY_DIR_PSTAGE}/stamp-cache-staging -u -d ${PSTAGE_TMPDIR_STAGE}/staging
@@ -320,3 +320,13 @@ python do_package_stage () {
# Note an assumption here is that do_deploy runs before do_package_write/do_populate_staging
#
addtask package_stage after do_package_write do_populate_staging before do_build
+
+do_package_stage_all () {
+ :
+}
+do_package_stage_all[recrdeptask] = "do_package_stage"
+addtask package_stage_all after do_package_stage before do_build
+
+
+
+