bitbake/lib/bb/data_smart.py:
authorHolger Hans Peter Freyther <zecke@selfish.org>
Tue, 7 Mar 2006 21:40:50 +0000 (21:40 +0000)
committerHolger Hans Peter Freyther <zecke@selfish.org>
Tue, 7 Mar 2006 21:40:50 +0000 (21:40 +0000)
    Give a filename to the better compile method.
    (sorry)

lib/bb/data_smart.py

index bb11a20..52f391d 100644 (file)
@@ -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):