From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6179D138331 for ; Tue, 6 Feb 2018 01:12:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49A94E09AB; Tue, 6 Feb 2018 01:12:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2591BE09AB for ; Tue, 6 Feb 2018 01:11:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C542C335C34 for ; Tue, 6 Feb 2018 01:11:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42DC71CF for ; Tue, 6 Feb 2018 01:11:57 +0000 (UTC) From: "Aric Belsito" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aric Belsito" Message-ID: <1517587158.4a89d331496affd51a02d11bf5277a9a38910162.lluixhi@gentoo> Subject: [gentoo-commits] proj/musl:master commit in: dev-lang/rust/ X-VCS-Repository: proj/musl X-VCS-Files: dev-lang/rust/rust-1.23.0-r1.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: lluixhi X-VCS-Committer-Name: Aric Belsito X-VCS-Revision: 4a89d331496affd51a02d11bf5277a9a38910162 X-VCS-Branch: master Date: Tue, 6 Feb 2018 01:11:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f7fa4d8a-6344-4ee4-85ff-1e3ad7fa76dd X-Archives-Hash: c5e6c54debe57bd5d5ff80584a4f70b1 commit: 4a89d331496affd51a02d11bf5277a9a38910162 Author: stefson yahoo de> AuthorDate: Fri Feb 2 15:59:18 2018 +0000 Commit: Aric Belsito gmail com> CommitDate: Fri Feb 2 15:59:18 2018 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=4a89d331 dev-lang/rust: attempt to make the build system to honor MAKEOPTS from make.conf dev-lang/rust/rust-1.23.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/rust/rust-1.23.0-r1.ebuild b/dev-lang/rust/rust-1.23.0-r1.ebuild index 5d7184a..c5b5ff4 100644 --- a/dev-lang/rust/rust-1.23.0-r1.ebuild +++ b/dev-lang/rust/rust-1.23.0-r1.ebuild @@ -6,7 +6,7 @@ EAPI=6 LLVM_MAX_SLOT=4 PYTHON_COMPAT=( python2_7 ) -inherit python-any-r1 versionator toolchain-funcs llvm +inherit multiprocessing python-any-r1 versionator toolchain-funcs llvm if [[ ${PV} = *beta* ]]; then betaver=${PV//*beta} @@ -189,7 +189,7 @@ src_configure() { } src_compile() { - ./x.py build || die + ./x.py build -j$(makeopts_jobs) || die } src_install() {