From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1046322-garchives=archives.gentoo.org@lists.gentoo.org>
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 A063F138334
	for <garchives@archives.gentoo.org>; Tue, 11 Sep 2018 07:19:57 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 776CEE0D21;
	Tue, 11 Sep 2018 07:19:55 +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 55146E0D21
	for <gentoo-commits@lists.gentoo.org>; Tue, 11 Sep 2018 07:19:55 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(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 BDA29335CFF
	for <gentoo-commits@lists.gentoo.org>; Tue, 11 Sep 2018 07:19:53 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B59C63BE
	for <gentoo-commits@lists.gentoo.org>; Tue, 11 Sep 2018 07:19:51 +0000 (UTC)
From: "Dirkjan Ochtman" <djc@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" <djc@gentoo.org>
Message-ID: <1536650382.7affc9f183165f8c5ce8fa2dcaebb2d74ae137dc.djc@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cargo/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-util/cargo/cargo-0.29.0.ebuild
X-VCS-Directories: dev-util/cargo/
X-VCS-Committer: djc
X-VCS-Committer-Name: Dirkjan Ochtman
X-VCS-Revision: 7affc9f183165f8c5ce8fa2dcaebb2d74ae137dc
X-VCS-Branch: master
Date: Tue, 11 Sep 2018 07:19:51 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: b1e730bd-d036-4bc3-8107-9045d40524f7
X-Archives-Hash: ac8cc9a69381add9940e939eafe02b15

commit:     7affc9f183165f8c5ce8fa2dcaebb2d74ae137dc
Author:     Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 11 07:19:42 2018 +0000
Commit:     Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
CommitDate: Tue Sep 11 07:19:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7affc9f1

dev-util/cargo: tweak the build command and die early

 dev-util/cargo/cargo-0.29.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/cargo/cargo-0.29.0.ebuild b/dev-util/cargo/cargo-0.29.0.ebuild
index e5043089537..984fa0934a2 100644
--- a/dev-util/cargo/cargo-0.29.0.ebuild
+++ b/dev-util/cargo/cargo-0.29.0.ebuild
@@ -125,7 +125,7 @@ wincolor-0.1.6
 wincolor-1.0.0
 "
 
-inherit cargo bash-completion-r1 versionator
+inherit cargo bash-completion-r1 multiprocessing versionator
 
 BOOTSTRAP_VERSION="0.$(($(get_version_component_range 2) - 1)).0"
 
@@ -195,7 +195,7 @@ src_configure() {
 src_compile() {
 	export CARGO_HOME="${ECARGO_HOME}"
 	local cargo="${WORKDIR}/cargo-${BOOTSTRAP_VERSION}-${TRIPLE}/cargo/bin/cargo"
-	${cargo} build --release
+	${cargo} build -j$(makeopts_jobs) --release || die
 
 	# Building HTML documentation
 	use doc && ${cargo} doc