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 100DA138AE9 for ; Fri, 29 Dec 2017 13:35:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CA27E0E72; Fri, 29 Dec 2017 13:35:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 03825E0E72 for ; Fri, 29 Dec 2017 13:35:12 +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 C472D33D4A6 for ; Fri, 29 Dec 2017 13:35:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 525669C2F for ; Fri, 29 Dec 2017 13:35:10 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1514554493.5bfd22c5b483ee6b15d3dfba66b6a8256d7c415e.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tbb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/tbb/tbb-2017.20170226.ebuild X-VCS-Directories: dev-cpp/tbb/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 5bfd22c5b483ee6b15d3dfba66b6a8256d7c415e X-VCS-Branch: master Date: Fri, 29 Dec 2017 13:35:10 +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: d9895660-96f3-475e-8fbb-6e92d663de44 X-Archives-Hash: 0e35f644f124bd883ac5d9559da48b42 commit: 5bfd22c5b483ee6b15d3dfba66b6a8256d7c415e Author: Fabian Groffen gentoo org> AuthorDate: Fri Dec 29 13:34:53 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Dec 29 13:34:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bfd22c5 dev-cpp/tbb: use get_libname to deal with the right files, bug #638526 Thanks Anton for the suggestion. Closes: https://bugs.gentoo.org/638526 Package-Manager: Portage-2.3.13, Repoman-2.3.3 dev-cpp/tbb/tbb-2017.20170226.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-cpp/tbb/tbb-2017.20170226.ebuild b/dev-cpp/tbb/tbb-2017.20170226.ebuild index 62fadf88307..187f9ac0615 100644 --- a/dev-cpp/tbb/tbb-2017.20170226.ebuild +++ b/dev-cpp/tbb/tbb-2017.20170226.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils flag-o-matic multilib-minimal toolchain-funcs versionator +inherit eutils flag-o-matic multilib-minimal multilib toolchain-funcs versionator PV1="$(get_version_component_range 1)" PV2=5 @@ -117,10 +117,10 @@ multilib_src_install() { for bt in ${buildtypes}; do cd "${BUILD_DIR}_${bt}" || die local l - for l in $(find . -name lib\*.so.\*); do + for l in $(find . -name lib\*$(get_libname \*)); do dolib.so ${l} local bl=$(basename ${l}) - dosym ${bl} /usr/$(get_libdir)/${bl%.*} + dosym ${bl} /usr/$(get_libdir)/${bl%%.*}$(get_libname) done done