[oe-commits] [openembedded-core] 06/38: archiver: avoid archiving source for glibc-locale

git at git.openembedded.org git at git.openembedded.org
Thu May 18 12:30:41 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 55cd7aa0ee11d4620f37a857252932a2df2ae091
Author: Zhenbo Gao <zhenbo.gao at windriver.com>
AuthorDate: Wed May 10 15:50:26 2017 +0800

    archiver: avoid archiving source for glibc-locale
    
    Avoid archiving source for glibc-locale as its tasks
    do_fetch do_unpack and do_patch have already been deleted.
    
    Signed-off-by: Zhenbo Gao <zhenbo.gao at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/archiver.bbclass | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
index 647d2cf..aa74146 100644
--- a/meta/classes/archiver.bbclass
+++ b/meta/classes/archiver.bbclass
@@ -67,6 +67,12 @@ python () {
     else:
         bb.debug(1, 'archiver: %s is included: %s' % (pn, reason))
 
+
+    # glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted,
+    # so avoid archiving source here.
+    if pn.startswith('glibc-locale'):
+        return
+
     # We just archive gcc-source for all the gcc related recipes
     if d.getVar('BPN') in ['gcc', 'libgcc'] \
             and not pn.startswith('gcc-source'):

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


More information about the Openembedded-commits mailing list