diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index d1d8657b3..81554b943 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py @@ -121,8 +121,8 @@ def handle(fn, d, include): else: logger.debug(2, "BB %s: handle(data, include)", fn) - (root, ext) = os.path.splitext(os.path.basename(fn)) - base_name = "%s%s" % (root, ext) + base_name = os.path.basename(fn) + (root, ext) = os.path.splitext(base_name) init(d) if ext == ".bbclass": |