diff options
| -rw-r--r-- | bitbake/lib/bb/parse/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/__init__.py b/bitbake/lib/bb/parse/__init__.py index f9517f03f2..bef3d31ea7 100644 --- a/bitbake/lib/bb/parse/__init__.py +++ b/bitbake/lib/bb/parse/__init__.py | |||
| @@ -91,7 +91,7 @@ def init_parser(d, dumpsigs): | |||
| 91 | def resolve_file(fn, d): | 91 | def resolve_file(fn, d): |
| 92 | if not os.path.isabs(fn): | 92 | if not os.path.isabs(fn): |
| 93 | bbpath = bb.data.getVar("BBPATH", d, True) | 93 | bbpath = bb.data.getVar("BBPATH", d, True) |
| 94 | newfn = bb.which(bbpath, fn) | 94 | newfn = bb.utils.which(bbpath, fn) |
| 95 | if not newfn: | 95 | if not newfn: |
| 96 | raise IOError("file %s not found in %s" % (fn, bbpath)) | 96 | raise IOError("file %s not found in %s" % (fn, bbpath)) |
| 97 | fn = newfn | 97 | fn = newfn |
