summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bblayers/query.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bblayers/query.py b/bitbake/lib/bblayers/query.py
index fb6f550ec2..652a3acce0 100644
--- a/bitbake/lib/bblayers/query.py
+++ b/bitbake/lib/bblayers/query.py
@@ -433,10 +433,10 @@ NOTE: .bbappend files can impact the dependencies.
433 line = fnfile.readline() 433 line = fnfile.readline()
434 434
435 # The "require/include xxx" in conf/machine/*.conf, .inc and .bbclass 435 # The "require/include xxx" in conf/machine/*.conf, .inc and .bbclass
436 conf_re = re.compile(".*/conf/machine/[^\/]*\.conf$") 436 conf_re = re.compile(r".*/conf/machine/[^\/]*\.conf$")
437 inc_re = re.compile(".*\.inc$") 437 inc_re = re.compile(r".*\.inc$")
438 # The "inherit xxx" in .bbclass 438 # The "inherit xxx" in .bbclass
439 bbclass_re = re.compile(".*\.bbclass$") 439 bbclass_re = re.compile(r".*\.bbclass$")
440 for layerdir in self.bblayers: 440 for layerdir in self.bblayers:
441 layername = self.get_layer_name(layerdir) 441 layername = self.get_layer_name(layerdir)
442 for dirpath, dirnames, filenames in os.walk(layerdir): 442 for dirpath, dirnames, filenames in os.walk(layerdir):