Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust-bin/
Date: Mon, 27 Apr 2020 07:00:41
Message-Id: 1587970632.c55eefa7eaac1ea654df527e3e6f3c70aeae4647.gyakovlev@gentoo
1 commit: c55eefa7eaac1ea654df527e3e6f3c70aeae4647
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 27 06:56:50 2020 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 27 06:57:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c55eefa7
7
8 dev-lang/rust-bin: quote variable
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 dev-lang/rust-bin/rust-bin-1.43.0.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/dev-lang/rust-bin/rust-bin-1.43.0.ebuild b/dev-lang/rust-bin/rust-bin-1.43.0.ebuild
17 index 377762a91d3..8596ce25330 100644
18 --- a/dev-lang/rust-bin/rust-bin-1.43.0.ebuild
19 +++ b/dev-lang/rust-bin/rust-bin-1.43.0.ebuild
20 @@ -51,7 +51,7 @@ multilib_src_install() {
21 if multilib_is_native_abi; then
22
23 # start native abi install
24 - pushd ${S} >/dev/null || die
25 + pushd "${S}" >/dev/null || die
26 local std
27 std="$(grep 'std' ./components)"
28 local components="rustc,cargo,${std}"