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 ED13B138334 for ; Thu, 7 Jun 2018 00:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07354E0C41; Thu, 7 Jun 2018 00:55:58 +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 AC73BE0C41 for ; Thu, 7 Jun 2018 00:55:57 +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 BEBF7335C84 for ; Thu, 7 Jun 2018 00:55:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03EA629E for ; Thu, 7 Jun 2018 00:55:54 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1528332935.973b9c19e51e7d2471b05e5005bccf1ba6676446.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.26.2.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 973b9c19e51e7d2471b05e5005bccf1ba6676446 X-VCS-Branch: master Date: Thu, 7 Jun 2018 00:55:54 +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: 1a9c9366-da62-484f-945a-d824b1d50846 X-Archives-Hash: 0c0574c4ee0669e621a42dfe98bcfa87 commit: 973b9c19e51e7d2471b05e5005bccf1ba6676446 Author: Patrick McLean gentoo org> AuthorDate: Thu Jun 7 00:55:35 2018 +0000 Commit: Patrick McLean gentoo org> CommitDate: Thu Jun 7 00:55:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973b9c19 dev-lang/rust: Move shell glob outside quotes Closes: https://bugs.gentoo.org/657496 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-lang/rust/rust-1.26.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/rust/rust-1.26.2.ebuild b/dev-lang/rust/rust-1.26.2.ebuild index 00f7c8354c4..0d7482f8a0d 100644 --- a/dev-lang/rust/rust-1.26.2.ebuild +++ b/dev-lang/rust/rust-1.26.2.ebuild @@ -184,7 +184,7 @@ src_install() { abi_libdir=$(get_abi_LIBDIR ${v##*.}) rust_target=$(get_abi_CHOST ${v##*.}) mkdir -p "${D}/usr/${abi_libdir}" - cp "${D}/usr/$(get_libdir)/rustlib/${rust_target}/lib/*.so" \ + cp "${D}/usr/$(get_libdir)/rustlib/${rust_target}/lib"/*.so \ "${D}/usr/${abi_libdir}" || die done