Pārlūkot izejas kodu

bitbake-dev: Fix a couple of bugs that crept in breaking runtime

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Richard Purdie 15 gadi atpakaļ
vecāks
revīzija
eb0d2f2615

+ 1 - 1
bitbake-dev/lib/bb/build.py

@@ -191,7 +191,7 @@ def exec_func(func, d, dirs = None):
         so.close()
         se.close()
 
-        if os.path.getsize(logfile) == 0:
+        if os.path.exists(logfile) and os.path.getsize(logfile) == 0:
             bb.msg.debug(2, bb.msg.domain.Build, "Zero size logfile %s, removing" % logfile)
             os.remove(logfile)
 

+ 1 - 1
bitbake-dev/lib/bb/parse/parse_py/BBHandler.py

@@ -94,7 +94,7 @@ def finalise(fn, d):
         for f in anonfuncs:
             code = code + "    %s(d)\n" % f
         data.setVar("__anonfunc", code, d)        
-        build.exec_func_python("__anonfunc", d)
+        build.exec_func("__anonfunc", d)
         data.delVar('T', d)
         if t:
             data.setVar('T', t, d)