From e023620773df82ba1551bec7fb921e4fef01322e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 14 Jun 2013 22:00:29 +0100 Subject: 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 --- bitbake/lib/bb/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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): # Was present to work around multiprocessing pool bugs in python < 2.7.3 # def multiprocessingpool(*args, **kwargs): - return multiprocessing.pool.Pool(*args, **kwargs) + return multiprocessing.Pool(*args, **kwargs) -- cgit v1.2.3-54-g00ecf