[bitbake-devel] [PATCH] cooker: Remove pointless repeated import

Richard Purdie richard.purdie at linuxfoundation.org
Fri May 10 15:18:17 UTC 2013


Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 85761e0..cd3b6e3 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1431,14 +1431,12 @@ class CookerCollectFiles(object):
 
     def find_bbfiles(self, path):
         """Find all the .bb and .bbappend files in a directory"""
-        from os.path import join
-
         found = []
         for dir, dirs, files in os.walk(path):
             for ignored in ('SCCS', 'CVS', '.svn'):
                 if ignored in dirs:
                     dirs.remove(ignored)
-            found += [join(dir, f) for f in files if (f.endswith('.bb') or f.endswith('.bbappend'))]
+            found += [os.path.join(dir, f) for f in files if (f.endswith('.bb') or f.endswith('.bbappend'))]
 
         return found
 






More information about the bitbake-devel mailing list