summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2007-04-03 11:28:34 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2007-04-03 11:28:34 +0000
commitc80c656436efa798b4ef36bf9a7f541426166e6a (patch)
tree8c69776214b82dc9e16d36633ec5f4e416f2c638
parentc3b612088e5a6c6298fbc8a5a8d4a5915089c958 (diff)
downloadbitbake-c80c656436efa798b4ef36bf9a7f541426166e6a.tar.gz
build.py: Expand dependency flag data
-rw-r--r--lib/bb/build.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index c0854b4ea..bcbc55eea 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -416,6 +416,7 @@ 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