All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] archiver.bbclass: Archive the native builds as well
@ 2013-01-18 14:34 Holger Hans Peter Freyther
  2013-01-18 18:24 ` kevin.strasser
  2013-01-18 18:25 ` Saul Wold
  0 siblings, 2 replies; 7+ messages in thread
From: Holger Hans Peter Freyther @ 2013-01-18 14:34 UTC (permalink / raw)
  To: openembedded-core; +Cc: Holger Hans Peter Freyther

On my build no copy of gcc/opkg-utils was archived. For gcc it is
bad as libgcc will end up in the image and the sources should be
provided. Update the method and comment to not exclude the native
version of the build.
---
 meta/classes/archiver.bbclass |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
index a4a2158..516f947 100644
--- a/meta/classes/archiver.bbclass
+++ b/meta/classes/archiver.bbclass
@@ -187,11 +187,11 @@ def get_applying_patches(d):
 
 def not_tarball(d):
     """
-    packages including key words 'work-shared', 'native', 'packagegroup-' will be passed
+    packages including key words 'work-shared', 'packagegroup-' will be passed
     """
     workdir = d.getVar('WORKDIR', True)
     s = d.getVar('S', True)
-    if 'work-shared' in s or 'packagegroup-' in workdir or 'native' in workdir:
+    if 'work-shared' in s or 'packagegroup-' in workdir:
         return True
     else:
         return False
-- 
1.7.10.4




^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-01-20 16:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-18 14:34 [PATCH] archiver.bbclass: Archive the native builds as well Holger Hans Peter Freyther
2013-01-18 18:24 ` kevin.strasser
2013-01-18 18:35   ` Saul Wold
2013-01-18 18:25 ` Saul Wold
2013-01-19  8:44   ` Holger Hans Peter Freyther
2013-01-20 12:56     ` Richard Purdie
2013-01-20 15:47       ` Holger Hans Peter Freyther

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.