From: Richard Purdie Date: Fri, 14 Jun 2013 21:00:29 +0000 (+0100) Subject: bitbake: utils: Fix multiprocessing pool reference X-Git-Tag: rev_ivi_2015_02_04~12130 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9298d37202c7593f43bbfbb256168ec2eb5eefaf;p=scm%2Fbb%2Ftizen-distro.git 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 --- diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 5301eba..7686602 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)