summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-03-29 20:24:43 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-03-29 20:24:43 +0000
commit639d13506fa829082427427f299f3df7e9d193cb (patch)
tree7194aceaaa980e506dd40e466ae61e52fbb546b8
parentdb1c998b31da06d7f3eb09fc6f59a1915b7b549e (diff)
downloadbitbake-639d13506fa829082427427f299f3df7e9d193cb.tar.gz
bitbake/lib/bb/data_smart.py:
Remember what we paid to the Cookie Monster. Make a copy of it. Currently we do no removal of these keys so I hope to get around the shallow copies as welbitbake/lib/bb/data_smart.py: Remember what we paid to the Cookie Monster. Make a copy of it. Currently we do no removal of these keys so I hope to get around the shallow copies as welll
-rw-r--r--lib/bb/data_smart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index c21921ca3..c5f0d2f79 100644
--- a/lib/bb/data_smart.py
+++ b/lib/bb/data_smart.py
@@ -238,6 +238,8 @@ class DataSmart:
# we really want this to be a DataSmart...
data = DataSmart()
data.dict["_data"] = self.dict
+ data._seen_overrides = copy.copy(self._seen_overrides)
+ data._special_values = copy.copy(self._special_values)
return data