summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-03-07 21:40:50 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-03-07 21:40:50 +0000
commit0f0d84599f32882abc81c6cfb2c78b515a87f892 (patch)
treeebd63fbcdf1cb1d37476e1c336a908a5eed6b796
parent170b111819a30df7c9e7d5423ef614ad121272dd (diff)
downloadbitbake-0f0d84599f32882abc81c6cfb2c78b515a87f892.tar.gz
bitbake/lib/bb/data_smart.py:
Give a filename to the better compile method. (sorry)
-rw-r--r--lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index bb11a2027..52f391dec 100644
--- a/lib/bb/data_smart.py
+++ b/lib/bb/data_smart.py
@@ -287,7 +287,7 @@ class DataSmartPackage(DataSmart):
self.unpickle_prep()
funcstr = self.getVar('__functions__', 0)
if funcstr:
- comp = utils.better_compile(funcstr, "<pickled>")
+ comp = utils.better_compile(funcstr, "<pickled>", self.bbfile)
utils.better_exec(comp, __builtins__, funcstr, self.bbfile)
def linkDataSet(self):