[oe-commits] [openembedded-core] 54/55: image: Remove the do_package_write_* tasks

git at git.openembedded.org git at git.openembedded.org
Sat Mar 3 22:57:17 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 3a1a19b1f368256256f75c89db40d3ad60a33cb0
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sat Mar 3 08:39:37 2018 +0000

    image: Remove the do_package_write_* tasks
    
    Now we're filtering tasks in the rpm indexing code so that tasks can only
    see the packages they really depend upon, having noexec package_write tasks
    around is causing problems since the tasks exist but don't have manifests.
    
    Removing the tasks entirely solves this problem and streamlines the
    task execution graph too.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/image.bbclass | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 23ed53d..ce78c43 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -627,9 +627,9 @@ deltask do_populate_sysroot
 do_package[noexec] = "1"
 deltask do_package_qa
 do_packagedata[noexec] = "1"
-do_package_write_ipk[noexec] = "1"
-do_package_write_deb[noexec] = "1"
-do_package_write_rpm[noexec] = "1"
+deltask do_package_write_ipk
+deltask do_package_write_deb
+deltask do_package_write_rpm
 
 # Prepare the root links to point to the /usr counterparts.
 create_merged_usr_symlinks() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list