diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-03-31 08:52:41 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:31 +0100 |
commit | 3995546222c18e5c3ca2d43a843b051e7107ce1c (patch) | |
tree | 6d18a009c9fad9949542eb659bd9cb955e65a441 /bitbake | |
parent | 94b60d1247be4ce42eaefafe13e73169bd978bd7 (diff) | |
download | openembedded-core-3995546222c18e5c3ca2d43a843b051e7107ce1c.tar.gz openembedded-core-3995546222c18e5c3ca2d43a843b051e7107ce1c.tar.bz2 openembedded-core-3995546222c18e5c3ca2d43a843b051e7107ce1c.zip |
Add & utilize a simple_exec utility function
(Bitbake rev: 5ead16f14f996bcbb2fb14277b8ce5a9317b8160)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/event.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/utils.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 8559858f04..f49f71cf71 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py @@ -58,7 +58,7 @@ def fire_class_handlers(event, d): event.data = d if type(h).__name__ == "code": locals = {"e": event} - exec h in bb.utils._context, locals + bb.utils.simple_exec(h, locals) bb.utils.better_eval("tmpHandler(e)", locals) else: h(event) diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 50e9402a2b..2e3937ec12 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -222,6 +222,9 @@ def better_exec(code, context, text, realfile): raise +def simple_exec(code, context): + exec code in _context, context + def better_eval(source, locals): return eval(source, _context, locals) |