diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-14 22:00:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-14 22:01:09 +0100 |
commit | e023620773df82ba1551bec7fb921e4fef01322e (patch) | |
tree | 3b9fa05c667066ae6451ec510b5561e5933b1415 /bitbake/lib/bb/utils.py | |
parent | 1e55bc4ae52424f3994d563c46a220a918d18b9b (diff) | |
download | poky-e023620773df82ba1551bec7fb921e4fef01322e.tar.gz |
bitbake: utils: Fix multiprocessing pool reference
Interestingly the previous version comparision was broken and we were always using
the compatibility code, masking this bug. Oops.
(Bitbake rev: d48e8bcb24e8fa5d4fd60fd2c9927a95976d8d8b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 5301ebaa97..7686602432 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -863,5 +863,5 @@ def process_profilelog(fn): | |||
863 | # Was present to work around multiprocessing pool bugs in python < 2.7.3 | 863 | # Was present to work around multiprocessing pool bugs in python < 2.7.3 |
864 | # | 864 | # |
865 | def multiprocessingpool(*args, **kwargs): | 865 | def multiprocessingpool(*args, **kwargs): |
866 | return multiprocessing.pool.Pool(*args, **kwargs) | 866 | return multiprocessing.Pool(*args, **kwargs) |
867 | 867 | ||