summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/bbconfigbuild/configfragments.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/bbconfigbuild/configfragments.py b/meta/lib/bbconfigbuild/configfragments.py
index 30cc5ece07..a0c3883399 100644
--- a/meta/lib/bbconfigbuild/configfragments.py
+++ b/meta/lib/bbconfigbuild/configfragments.py
@@ -43,6 +43,8 @@ class ConfigFragmentsPlugin(LayerPlugin):
43 for topdir, dirs, files in os.walk(os.path.join(layerdir, fragments_path_prefix)): 43 for topdir, dirs, files in os.walk(os.path.join(layerdir, fragments_path_prefix)):
44 fragmentdir = os.path.relpath(topdir, os.path.join(layerdir, fragments_path_prefix)) 44 fragmentdir = os.path.relpath(topdir, os.path.join(layerdir, fragments_path_prefix))
45 for fragmentfile in sorted(files): 45 for fragmentfile in sorted(files):
46 if fragmentfile.startswith(".") or not fragmentfile.endswith(".conf"):
47 continue
46 fragmentname = os.path.normpath("/".join((layername, fragmentdir, fragmentfile.split('.')[0]))) 48 fragmentname = os.path.normpath("/".join((layername, fragmentdir, fragmentfile.split('.')[0])))
47 fragmentpath = os.path.join(topdir, fragmentfile) 49 fragmentpath = os.path.join(topdir, fragmentfile)
48 fragmentsummary, fragmentdesc = self.get_fragment_info(fragmentpath, fragmentname) 50 fragmentsummary, fragmentdesc = self.get_fragment_info(fragmentpath, fragmentname)