summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_py/ConfHandler.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-05-11 22:41:17 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-05-11 22:41:17 +0100
commit107a9da00640a9e086a8608c20aee48aefd92893 (patch)
tree97ace0c2103993bc780b221619391edb5e797432 /bitbake/lib/bb/parse/parse_py/ConfHandler.py
parent1ca980646deb13b2cf85b17e78de9faba0191dbf (diff)
downloadpoky-107a9da00640a9e086a8608c20aee48aefd92893.tar.gz
bitbake: Merge further fixes from upstream 1.8 branch
* Make the test functionality work * Optimise BBPATH handling when changing directory * Optimise file globing for BBFILES Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/parse/parse_py/ConfHandler.py')
-rw-r--r--bitbake/lib/bb/parse/parse_py/ConfHandler.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py
index f8a49689e2..c9f1ea13fb 100644
--- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py
@@ -102,6 +102,13 @@ def include(oldfn, fn, data, error_out):
102 fn = bb.data.expand(fn, data) 102 fn = bb.data.expand(fn, data)
103 oldfn = bb.data.expand(oldfn, data) 103 oldfn = bb.data.expand(oldfn, data)
104 104
105 if not os.path.isabs(fn):
106 dname = os.path.dirname(oldfn)
107 bbpath = "%s:%s" % (dname, bb.data.getVar("BBPATH", data, 1))
108 abs_fn = bb.which(bbpath, fn)
109 if abs_fn:
110 fn = abs_fn
111
105 from bb.parse import handle 112 from bb.parse import handle
106 try: 113 try:
107 ret = handle(fn, data, True) 114 ret = handle(fn, data, True)