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

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2009-10-22 17:32:12 +01:00
parent a1a308c546
commit eb0d2f2615
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)