summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r--bitbake/lib/bb/data.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py
index e9ce0ad4d0..9bc7e6ab0a 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -408,6 +408,7 @@ def build_dependencies(key, keys, shelldeps, varflagsexcl, d):
408 deps -= set(varflags.get("vardepsexclude", "").split()) 408 deps -= set(varflags.get("vardepsexclude", "").split())
409 except Exception as e: 409 except Exception as e:
410 bb.warn("Exception during build_dependencies for %s" % key) 410 bb.warn("Exception during build_dependencies for %s" % key)
411 bb.warn(str(e))
411 raise 412 raise
412 return deps, value 413 return deps, value
413 #bb.note("Variable %s references %s and calls %s" % (key, str(deps), str(execs))) 414 #bb.note("Variable %s references %s and calls %s" % (key, str(deps), str(execs)))