Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
@@ -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)
@@ -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)