diff options
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index a388773bb7..52fd8285ed 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py | |||
@@ -68,8 +68,8 @@ def inherit(files, d): | |||
68 | __inherit_cache = data.getVar('__inherit_cache', d) or [] | 68 | __inherit_cache = data.getVar('__inherit_cache', d) or [] |
69 | fn = "" | 69 | fn = "" |
70 | lineno = 0 | 70 | lineno = 0 |
71 | files = data.expand(files, d) | ||
72 | for file in files: | 71 | for file in files: |
72 | file = data.expand(file, d) | ||
73 | if file[0] != "/" and file[-8:] != ".bbclass": | 73 | if file[0] != "/" and file[-8:] != ".bbclass": |
74 | file = os.path.join('classes', '%s.bbclass' % file) | 74 | file = os.path.join('classes', '%s.bbclass' % file) |
75 | 75 | ||