diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-12-07 17:57:46 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-12-07 17:57:46 +0000 |
commit | 9db90f98865c41acfeccdcb79cb88fe3305ac9c0 (patch) | |
tree | 9738c2b087bf50f8094154c1fe10a67a8bfbeb2c /eclass/distutils-r1.eclass | |
parent | Stable for x86, wrt bug #441146 (diff) | |
download | historical-9db90f98865c41acfeccdcb79cb88fe3305ac9c0.tar.gz historical-9db90f98865c41acfeccdcb79cb88fe3305ac9c0.tar.bz2 historical-9db90f98865c41acfeccdcb79cb88fe3305ac9c0.zip |
Use multiprocessing post-fork wait mode to avoid early output when all jobs are running.
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 165f37590206..cdce6939c122 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.26 2012/12/07 17:56:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.27 2012/12/07 17:57:46 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -382,7 +382,7 @@ distutils-r1_run_phase() { if [[ ${DISTUTILS_NO_PARALLEL_BUILD} ]]; then "${@}" else - multijob_child_init "${@}" + multijob_child_init --post "${@}" fi if [[ ${DISTUTILS_IN_SOURCE_BUILD} ]]; then |