From 55b4c3c1c170b0a4fb1c7a2e9dca5d5b544c96a3 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Fri, 15 Oct 2004 21:22:05 +0000 Subject: back out previous mistaken change --- bin/oe/build.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'bin') 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: -- cgit 1.2.3-korg