summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-12 08:17:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-16 23:32:41 +0100
commitb28ea877e096bbfc89be8851f971383a2243e99d (patch)
tree3ac3bc0f7f3d6fd3092b2cca0a7cbab4aa58d151 /bitbake/lib/bb/data.py
parent3a6ae48e51607d4c31319bc60e2a96dbec856147 (diff)
downloadpoky-b28ea877e096bbfc89be8851f971383a2243e99d.tar.gz
bitbake: data/event/siggen: Fix various exceptions [FIXME]
(Bitbake rev: f1e4a3c550895fb06e1297682c756d8d57cccbf0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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)))