aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-04-03 11:23:48 +0000
committerRichard Purdie <richard@openedhand.com>2007-04-03 11:23:48 +0000
commitbd0ca262c95d28dc45305efbc03e53607e9c9a0a (patch)
tree561a74b88700c1ee55827c5501d0c3062b1f9dce /bitbake
parentc70cfab235fb4770e49cb46bdc39f50cbf1a7e3f (diff)
downloadopenembedded-core-contrib-bd0ca262c95d28dc45305efbc03e53607e9c9a0a.tar.gz
build.py: Sync with bitbake 1.8 branch
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1426 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/build.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 3494c0a28e..bcbc55eea5 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -416,9 +416,11 @@ def add_task(task, deps, d):
def getTask(name):
deptask = data.getVarFlag(task, name, d)
if deptask:
+ deptask = data.expand(deptask, d)
if not name in task_deps:
task_deps[name] = {}
task_deps[name][task] = deptask
+ getTask('depends')
getTask('deptask')
getTask('rdeptask')
getTask('recrdeptask')