From 06aaf0d0c9cfba29d05d6b2ff19ce4dc477c4795 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 10 May 2013 14:52:47 +0000 Subject: bitbake: cooker: Fix get_bbfiles() Its clear looking at the code the path argument has never been used and doesn't work. Tweak the function to be a little more readable. (Bitbake rev: d7047ceaf29b870ade3257e263e010f65aa8bc6e) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index da598c9330..85761e07c4 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1419,14 +1419,14 @@ class CookerCollectFiles(object): return pri return 0 - def get_bbfiles(self, path = os.getcwd()): + def get_bbfiles(self): """Get list of default .bb files by reading out the current directory""" + path = os.getcwd() contents = os.listdir(path) bbfiles = [] for f in contents: - (root, ext) = os.path.splitext(f) - if ext == ".bb": - bbfiles.append(os.path.abspath(os.path.join(os.getcwd(), f))) + if f.endswith(".bb"): + bbfiles.append(os.path.abspath(os.path.join(path, f))) return bbfiles def find_bbfiles(self, path): -- cgit v1.2.3-54-g00ecf