aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2005-05-20 18:11:10 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2005-05-20 18:11:10 +0000
commit08f949ddbb175e09ef68c8d1cf852f88e94c6559 (patch)
treeb8f591b188b40cc5bf875ae8826b285c401a7aba
parent9cc4de1c2d51eaeeb7eece1633e4ca67d4e7c711 (diff)
downloadbitbake-08f949ddbb175e09ef68c8d1cf852f88e94c6559.tar.gz
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
-rw-r--r--lib/bb/data_dict.py4
1 files 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):