summaryrefslogtreecommitdiffstats
path: root/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-01-19 15:33:31 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-01-19 15:34:01 +0000
commitb65e8ec5931afbfcb29482db5a3afb9a752166cf (patch)
tree4eecc2d466e0e7d68e2a73c348c9051a36df9fbd /bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
parent43788606bda9bef3e0c796271af8a03e01d9853d (diff)
downloadpoky-b65e8ec5931afbfcb29482db5a3afb9a752166cf.tar.gz
bitbake-dev: Sync again with upstream after fixes from Poky bitbake 1.8 were merged
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake-dev/lib/bb/parse/parse_py/BBHandler.py')
-rw-r--r--bitbake-dev/lib/bb/parse/parse_py/BBHandler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py b/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
index f34599136c..9b353634ed 100644
--- a/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake-dev/lib/bb/parse/parse_py/BBHandler.py
@@ -329,7 +329,8 @@ def feeder(lineno, s, fn, root, d):
329 after = m.group("after") 329 after = m.group("after")
330 if func is None: 330 if func is None:
331 return 331 return
332 var = "do_" + func 332 if func[:3] != "do_":
333 var = "do_" + func
333 334
334 data.setVarFlag(var, "task", 1, d) 335 data.setVarFlag(var, "task", 1, d)
335 336