diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-12-13 08:41:37 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-12-13 08:41:37 +0000 |
commit | 59c1548f214a3b3c854d39614472845ccdc48604 (patch) | |
tree | e3efe58a7aa00bec855f5480eb7747e0fee505a7 /eclass/multilib-build.eclass | |
parent | Rename net-zope/zope-interface to dev-python/zope-interface. (diff) | |
download | gentoo-2-59c1548f214a3b3c854d39614472845ccdc48604.tar.gz gentoo-2-59c1548f214a3b3c854d39614472845ccdc48604.tar.bz2 gentoo-2-59c1548f214a3b3c854d39614472845ccdc48604.zip |
Disable parallel run support.
Diffstat (limited to 'eclass/multilib-build.eclass')
-rw-r--r-- | eclass/multilib-build.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index 2e35d4739fc2..3509366fbd4f 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.64 2014/08/17 03:34:32 jcallen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.65 2014/12/13 08:41:37 mgorny Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -223,18 +223,18 @@ multilib_foreach_abi() { # @DESCRIPTION: # If multilib support is enabled, sets the toolchain up for each # supported ABI along with the ABI variable and correct BUILD_DIR, -# and runs the given commands with them. The commands are run -# in parallel with number of jobs being determined from MAKEOPTS. +# and runs the given commands with them. # # If multilib support is disabled, it just runs the commands. No setup # is done. # -# Useful for running configure scripts. +# This function used to run multiple commands in parallel. Now it's just +# a deprecated alias to multilib_foreach_abi. multilib_parallel_foreach_abi() { debug-print-function ${FUNCNAME} "${@}" local MULTIBUILD_VARIANTS=( $(multilib_get_enabled_abi_pairs) ) - multibuild_parallel_foreach_variant _multilib_multibuild_wrapper "${@}" + multibuild_foreach_variant _multilib_multibuild_wrapper "${@}" } # @FUNCTION: multilib_for_best_abi |