From 208f397c0dc48d56bc7900e76eb48406d5865c72 Mon Sep 17 00:00:00 2001 From: Zhenbo Gao Date: Wed, 10 May 2017 15:50:26 +0800 Subject: 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 Signed-off-by: Ross Burton Signed-off-by: Armin Kuster --- meta/classes/archiver.bbclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass index 188f8c0423..71c9fd577b 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', True) in ['gcc', 'libgcc'] \ and not pn.startswith('gcc-source'): -- cgit 1.2.3-korg