summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-10-15 21:22:05 +0000
committerPhil Blundell <philb@gnu.org>2004-10-15 21:22:05 +0000
commit55b4c3c1c170b0a4fb1c7a2e9dca5d5b544c96a3 (patch)
treebcd3ba2390bcc32c3bf99696f95fc1021f54d8b0
parentbb2aac48e2eb42c1fcb36db80eaf08e547534e48 (diff)
downloadbitbake-contrib-55b4c3c1c170b0a4fb1c7a2e9dca5d5b544c96a3.tar.gz
back out previous mistaken change
-rw-r--r--bin/oe/build.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/oe/build.py b/bin/oe/build.py
index 953951f9a..d1c2767d1 100644
--- a/bin/oe/build.py
+++ b/bin/oe/build.py
@@ -282,11 +282,7 @@ def exec_task(task, d):
try:
debug(1, "Executing task %s" % item)
event.fire(TaskStarted(item, d))
- from copy import deepcopy
- localdata = deepcopy(d)
- oe.data.setVar('OVERRIDES', "%s:%s" % (item.replace('_', '-'), oe.data.getVar('OVERRIDES', localdata)), localdata)
- oe.data.update_data(localdata)
- exec_func(item, localdata)
+ exec_func(item, d)
event.fire(TaskSucceeded(item, d))
task_cache.append(item)
except FuncFailed, reason: