bitbake/build.py: Note when calling functions that don't exist. Should probably error

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2010-08-05 12:40:00 +01:00
parent 36e81a844b
commit 9ef9b5e1a7

View File

@@ -90,6 +90,7 @@ def exec_func(func, d, dirs = None):
body = data.getVar(func, d)
if not body:
bb.warn("Function %s doesn't exist" % func)
return
flags = data.getVarFlags(func, d)