[oe-commits] Bruce Ashfield : kernel-yocto: fix .scc and .cfg matching

git at git.openembedded.org git at git.openembedded.org
Mon Feb 4 13:19:38 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: 22aa5d040604b37ba984bae9e800e56ba6e4956d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=22aa5d040604b37ba984bae9e800e56ba6e4956d

Author: Bruce Ashfield <bruce.ashfield at windriver.com>
Date:   Mon Jan 28 16:27:07 2013 -0500

kernel-yocto: fix .scc and .cfg matching

SRC_URIs that contained git repositories or other constructs that resulted
in an extension of "." or a substring of "scc" or "cfg" were matching the
tests for patches and configs. This was due to a python tuple being used
instead of an array. Switching to an array makes the match exact and the
behaviour we want.

Signed-off-by: Bruce Ashfield <bruce.ashfield at windriver.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/classes/kernel-yocto.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index b336e43..962b493 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -20,7 +20,7 @@ def find_sccs(d):
     sources_list=[]
     for s in sources:
         base, ext = os.path.splitext(os.path.basename(s))
-        if ext and ext in ('.scc' '.cfg'):
+        if ext and ext in [".scc", ".cfg"]:
             sources_list.append(s)
         elif base and base in 'defconfig':
             sources_list.append(s)





More information about the Openembedded-commits mailing list