From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AB70E138253 for ; Mon, 9 May 2016 15:57:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 163E621C028; Mon, 9 May 2016 15:57:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88A3B21C028 for ; Mon, 9 May 2016 15:57:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 619C53406AD for ; Mon, 9 May 2016 15:57:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59CC9929 for ; Mon, 9 May 2016 15:57:35 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1462809281.142bbed43bdd385b783c266b22107b0a6bf20bb0.haubi@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: dev-libs/openssl/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: dev-libs/openssl/openssl-1.0.2g-r2.ebuild X-VCS-Directories: dev-libs/openssl/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: 142bbed43bdd385b783c266b22107b0a6bf20bb0 X-VCS-Branch: master Date: Mon, 9 May 2016 15:57:35 +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: 2bd56485-1fd9-4a4d-9b09-97bf8ac75480 X-Archives-Hash: 01653448e8a90298eeee6fc9df78b397 commit: 142bbed43bdd385b783c266b22107b0a6bf20bb0 Author: Michael Haubenwallner ssi-schaefer com> AuthorDate: Mon May 9 15:54:18 2016 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Mon May 9 15:54:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=142bbed4 openssl: get_libname libs are not static even when named lib.a dev-libs/openssl/openssl-1.0.2g-r2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-libs/openssl/openssl-1.0.2g-r2.ebuild b/dev-libs/openssl/openssl-1.0.2g-r2.ebuild index 619363b..5c4f2c0 100644 --- a/dev-libs/openssl/openssl-1.0.2g-r2.ebuild +++ b/dev-libs/openssl/openssl-1.0.2g-r2.ebuild @@ -234,7 +234,8 @@ multilib_src_install_all() { # build system: the static archives are built as PIC all the time. # Only way around this would be to manually configure+compile openssl # twice; once with shared lib support enabled and once without. - use static-libs || rm -f "${ED}"/usr/lib*/lib*.a + use static-libs || find "${ED}"usr/lib -mindepth 1 -maxdepth 1 \ + -name "lib*.a" -not -name "lib*$(get_libname)" -delete # create the certs directory dodir ${SSL_CNF_DIR}/certs