From: Richard Purdie Date: Tue, 3 Apr 2007 11:23:48 +0000 (+0000) Subject: build.py: Sync with bitbake 1.8 branch X-Git-Tag: 2011-1~11987 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=bd0ca262c95d28dc45305efbc03e53607e9c9a0a;p=openembedded-core.git 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 --- 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')