[oe-commits] [openembedded-core] 28/39: sstate: Skip glibc do_stash_locale and gcc do_gcc_stash_builddir tasks

git at git.openembedded.org git at git.openembedded.org
Thu Apr 6 23:52:08 UTC 2017


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 8854c5c0acf0f0079dc22a6eb893e4d8f68bba9d
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Apr 5 15:37:12 2017 +0100

    sstate: Skip glibc do_stash_locale and gcc do_gcc_stash_builddir tasks
    
    We never need these tasks as dependencies of other sstate tasks since
    they're only ever needed to build artefacts so we can always skip them
    and save some time/space.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/sstate.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index af58854..bc0ec54 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -915,6 +915,10 @@ def setscene_depvalid(task, taskdependees, notneeded, d, log=None):
     if taskdependees[task][1] == "do_populate_lic":
         return True
 
+    # stash_locale and gcc_stash_builddir are never needed as a dependency for built objects
+    if taskdependees[task][1] == "do_stash_locale" or taskdependees[task][1] == "do_gcc_stash_builddir":
+        return True
+
     # We only need to trigger packagedata through direct dependencies
     # but need to preserve packagedata on packagedata links
     if taskdependees[task][1] == "do_packagedata":

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


More information about the Openembedded-commits mailing list