diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2018-06-06 17:55:35 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2018-06-06 17:55:35 -0700 |
commit | 973b9c19e51e7d2471b05e5005bccf1ba6676446 (patch) | |
tree | 0f5cdc6c3f7c86a5730b975c70c22a056e645a6c /dev-lang/rust | |
parent | net-misc/dhcpcd: update URLs to use HTTPS (diff) | |
download | gentoo-973b9c19e51e7d2471b05e5005bccf1ba6676446.tar.gz gentoo-973b9c19e51e7d2471b05e5005bccf1ba6676446.tar.bz2 gentoo-973b9c19e51e7d2471b05e5005bccf1ba6676446.zip |
dev-lang/rust: Move shell glob outside quotes
Closes: https://bugs.gentoo.org/657496
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-lang/rust')
-rw-r--r-- | dev-lang/rust/rust-1.26.2.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-lang/rust/rust-1.26.2.ebuild b/dev-lang/rust/rust-1.26.2.ebuild index 00f7c8354c45..0d7482f8a0d6 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 |