All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] package.bbclass: Fix populate_packages for glob expansion issues
@ 2013-04-17 15:20 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2013-04-17 15:20 UTC (permalink / raw)
  To: openembedded-core

If we put a valid glob like "*/foo/*" into FILES, populate_packages
breaks with a "file exists" message. This is because the glob expansion
does not have "./" prefix however there may already be an entry in
the seen list which does have such a prefix. The easiest/simplest fix
right now is to add the prefix if it doesn't exist which only happens
for certain globs.

(From OE-Core rev: 3c6b1730412e3c5b6f628a70b854c0631e7bd9dc)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 4e9b79e..5765e12 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -946,6 +946,8 @@ python populate_packages () {
         for file in files:
             if os.path.isabs(file):
                 file = '.' + file
+            if not file.startswith("./"):
+                file = './' + file
             if not cpath.islink(file):
                 if cpath.isdir(file):
                     newfiles =  [ os.path.join(file,x) for x in os.listdir(file) ]





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-04-17 15:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-17 15:20 [PATCH] package.bbclass: Fix populate_packages for glob expansion issues Richard Purdie

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.