diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-06-07 05:02:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-06-07 05:02:33 +0000 |
commit | 234d5a89600052378c25e1e39d263a6d4ea42fb4 (patch) | |
tree | 5a74ffb76d442a09423a7b340290aa6c1e8470f7 /eclass | |
parent | add tests for new multiprocessing eclass (diff) | |
download | gentoo-2-234d5a89600052378c25e1e39d263a6d4ea42fb4.tar.gz gentoo-2-234d5a89600052378c25e1e39d263a6d4ea42fb4.tar.bz2 gentoo-2-234d5a89600052378c25e1e39d263a6d4ea42fb4.zip |
inherit new multiprocessing for makeopts_jobs
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-module.eclass | 4 | ||||
-rw-r--r-- | eclass/waf-utils.eclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index eeb16cfd1f59..95256091d8ad 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.132 2012/04/15 20:15:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.133 2012/06/07 05:02:33 vapier Exp $ # @ECLASS: perl-module.eclass # @MAINTAINER: @@ -12,7 +12,7 @@ # The perl-module eclass is designed to allow easier installation of perl # modules, and their incorporation into the Gentoo Linux system. -inherit eutils base +inherit eutils base multiprocessing [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives PERL_EXPF="src_unpack src_compile src_test src_install" diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass index 224d64f1f6d8..9ab975da771c 100644 --- a/eclass/waf-utils.eclass +++ b/eclass/waf-utils.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/waf-utils.eclass,v 1.10 2012/05/10 03:58:18 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.11 2012/06/07 05:02:33 vapier Exp $ # @ECLASS: waf-utils.eclass # @MAINTAINER: @@ -15,7 +15,7 @@ # waf-based packages much easier. # Its main features are support of common portage default settings. -inherit base eutils multilib toolchain-funcs +inherit base eutils multilib toolchain-funcs multiprocessing case ${EAPI:-0} in 4|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |