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 BE1841382C5 for ; Sun, 18 Apr 2021 19:41:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EB6AE07F9; Sun, 18 Apr 2021 19:41:34 +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 EB1C6E07F9 for ; Sun, 18 Apr 2021 19:41:33 +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 7D06A335C7E for ; Sun, 18 Apr 2021 19:41:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C62045C9 for ; Sun, 18 Apr 2021 19:41:30 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1618774878.f198ec32b4b7721c1699790a5c731ba64f684482.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rustup/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rustup/rustup-1.23.1.ebuild X-VCS-Directories: dev-util/rustup/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: f198ec32b4b7721c1699790a5c731ba64f684482 X-VCS-Branch: master Date: Sun, 18 Apr 2021 19:41:30 +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: 547e8b5e-7719-43b0-b999-a43be540b2fe X-Archives-Hash: e1190dfab9447112c3c6cc49146b4968 commit: f198ec32b4b7721c1699790a5c731ba64f684482 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Apr 18 19:41:00 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Apr 18 19:41:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f198ec32 dev-util/rustup: fix typo in src_prepare Closes: https://bugs.gentoo.org/783630 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Georgy Yakovlev gentoo.org> dev-util/rustup/rustup-1.23.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/rustup/rustup-1.23.1.ebuild b/dev-util/rustup/rustup-1.23.1.ebuild index 3a0b8cfef37..b948b72ab46 100644 --- a/dev-util/rustup/rustup-1.23.1.ebuild +++ b/dev-util/rustup/rustup-1.23.1.ebuild @@ -319,7 +319,7 @@ src_unpack() { src_prepare() { # patch git dep to use pre-fetched tarball local home_path="home = { path = '"${WORKDIR}/home-${HOME_COMMIT}"' }" - sed -i "s@^home =.*@${home_path}@" "${P}/Cargo.toml" || die + sed -i "s@^home =.*@${home_path}@" "${S}/Cargo.toml" || die default }