diff options
author | Zhenbo Gao <zhenbo.gao@windriver.com> | 2017-05-10 15:50:26 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-18 14:01:46 +0100 |
commit | 4ef31feab1fc15e6d1100348845820e4bc429a16 (patch) | |
tree | 925d497dbc761418910fda622c42c0048b6e5c50 /meta/classes/archiver.bbclass | |
parent | 23ecae6d677894326c6aafec2a96a1d0657b0d18 (diff) | |
download | poky-4ef31feab1fc15e6d1100348845820e4bc429a16.tar.gz |
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.
(From OE-Core rev: 50ed224ebc8d88a900febdc78013fa0c791d71cf)
Signed-off-by: Zhenbo Gao <zhenbo.gao@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/archiver.bbclass')
-rw-r--r-- | meta/classes/archiver.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass index 647d2cf2d7..aa741463d7 100644 --- a/meta/classes/archiver.bbclass +++ b/meta/classes/archiver.bbclass | |||
@@ -67,6 +67,12 @@ python () { | |||
67 | else: | 67 | else: |
68 | bb.debug(1, 'archiver: %s is included: %s' % (pn, reason)) | 68 | bb.debug(1, 'archiver: %s is included: %s' % (pn, reason)) |
69 | 69 | ||
70 | |||
71 | # glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted, | ||
72 | # so avoid archiving source here. | ||
73 | if pn.startswith('glibc-locale'): | ||
74 | return | ||
75 | |||
70 | # We just archive gcc-source for all the gcc related recipes | 76 | # We just archive gcc-source for all the gcc related recipes |
71 | if d.getVar('BPN') in ['gcc', 'libgcc'] \ | 77 | if d.getVar('BPN') in ['gcc', 'libgcc'] \ |
72 | and not pn.startswith('gcc-source'): | 78 | and not pn.startswith('gcc-source'): |