summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 2c7788ea04..f463603d5a 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1435,7 +1435,7 @@ class CookerCollectFiles(object):
1435 for ignored in ('SCCS', 'CVS', '.svn'): 1435 for ignored in ('SCCS', 'CVS', '.svn'):
1436 if ignored in dirs: 1436 if ignored in dirs:
1437 dirs.remove(ignored) 1437 dirs.remove(ignored)
1438 found += [os.path.join(dir, f) for f in files if (f.endswith('.bb') or f.endswith('.bbappend'))] 1438 found += [os.path.join(dir, f) for f in files if (f.endswith(['.bb', '.bbappend']))]
1439 1439
1440 return found 1440 return found
1441 1441