From 08f949ddbb175e09ef68c8d1cf852f88e94c6559 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 20 May 2005 18:11:10 +0000 Subject: bitbake/lib/bb/data_dict.py: -Fix one bug in the unused data_dict.py. There is still one left... again cookies for the one finding it --- lib/bb/data_dict.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/data_dict.py b/lib/bb/data_dict.py index 27f3a9e0c..81e226bf6 100644 --- a/lib/bb/data_dict.py +++ b/lib/bb/data_dict.py @@ -205,9 +205,9 @@ class DataDictPackage(DataDict): exec comp in __builtins__ def linkDataSet(self,parent): + from copy import deepcopy if not parent == None: - self.initVar("_data") - self.dict["_data"] = parent + self.dict = deepcopy(parent) def __init__(self,cache,name,clean,parent): -- cgit 1.2.3-korg