summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/__init__.py')
-rw-r--r--bitbake/lib/bb/parse/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/__init__.py b/bitbake/lib/bb/parse/__init__.py
index 26ae7ead86..a2952ecc0f 100644
--- a/bitbake/lib/bb/parse/__init__.py
+++ b/bitbake/lib/bb/parse/__init__.py
@@ -123,7 +123,7 @@ def init_parser(d):
123 123
124def resolve_file(fn, d): 124def resolve_file(fn, d):
125 if not os.path.isabs(fn): 125 if not os.path.isabs(fn):
126 bbpath = d.getVar("BBPATH", True) 126 bbpath = d.getVar("BBPATH")
127 newfn, attempts = bb.utils.which(bbpath, fn, history=True) 127 newfn, attempts = bb.utils.which(bbpath, fn, history=True)
128 for af in attempts: 128 for af in attempts:
129 mark_dependency(d, af) 129 mark_dependency(d, af)