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 855CE138359 for ; Mon, 3 Aug 2020 06:27:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDDECE097C; Mon, 3 Aug 2020 06:27:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BA2EFE093B for ; Mon, 3 Aug 2020 06:27:51 +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 D050B34F300 for ; Mon, 3 Aug 2020 06:27:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 868A02FE for ; Mon, 3 Aug 2020 06:27:48 +0000 (UTC) From: "Mikhail Pukhlikov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikhail Pukhlikov" Message-ID: <1596436055.ed2692fa1b6711cd80460fe823c3c9dd7ceceee1.cynede@gentoo> Subject: [gentoo-commits] repo/proj/rust:master commit in: eclass/ X-VCS-Repository: repo/proj/rust X-VCS-Files: eclass/cargo.eclass X-VCS-Directories: eclass/ X-VCS-Committer: cynede X-VCS-Committer-Name: Mikhail Pukhlikov X-VCS-Revision: ed2692fa1b6711cd80460fe823c3c9dd7ceceee1 X-VCS-Branch: master Date: Mon, 3 Aug 2020 06:27:48 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c5bb4125-0900-413e-aa4f-9c266ba93d20 X-Archives-Hash: b2f01c44b0ec21836b32c9248a60cc59 commit: ed2692fa1b6711cd80460fe823c3c9dd7ceceee1 Author: gentoo90 gmail com> AuthorDate: Sat Jul 18 20:55:55 2020 +0000 Commit: Mikhail Pukhlikov gentoo org> CommitDate: Mon Aug 3 06:27:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/rust.git/commit/?id=ed2692fa cargo eclass: fix install cargo install now requires --path parameter Closes: https://github.com/gentoo/gentoo-rust/pull/493 Signed-off-by: Mikhail Pukhlikov gentoo.org> eclass/cargo.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 5207d2a..a4808ae 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -150,7 +150,7 @@ cargo_src_compile() { cargo_src_install() { debug-print-function ${FUNCNAME} "$@" - cargo install -j $(makeopts_jobs) --root="${D}/usr" $(usex debug --debug "") "$@" \ + cargo install -j $(makeopts_jobs) --root="${D}/usr" --path . $(usex debug --debug "") "$@" \ || die "cargo install failed" rm -f "${D}/usr/.crates.toml"