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 | b0e37089d8fd5a110fe53e38340f4939a80a8bf7 (patch) | |
tree | ecaa8f7a55b7c728d1e3529d7bacf73edf5b2798 /eclass/distutils-r1.eclass | |
parent | Stable for x86, wrt bug #441146 (diff) | |
download | gentoo-2-b0e37089d8fd5a110fe53e38340f4939a80a8bf7.tar.gz gentoo-2-b0e37089d8fd5a110fe53e38340f4939a80a8bf7.tar.bz2 gentoo-2-b0e37089d8fd5a110fe53e38340f4939a80a8bf7.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 |