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 984D1138334 for ; Mon, 18 Jun 2018 12:23:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67631E0916; Mon, 18 Jun 2018 12:23:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3C7F1E0916 for ; Mon, 18 Jun 2018 12:23: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 4DC87335C36 for ; Mon, 18 Jun 2018 12:23:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B0F02C2 for ; Mon, 18 Jun 2018 12:23:09 +0000 (UTC) From: "Tony Vroon" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Vroon" Message-ID: <1529324561.78949b861d03eab6c7dbfae6f9318826f3f5335d.chainsaw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libsrtp/libsrtp-2.1.0.ebuild X-VCS-Directories: net-libs/libsrtp/ X-VCS-Committer: chainsaw X-VCS-Committer-Name: Tony Vroon X-VCS-Revision: 78949b861d03eab6c7dbfae6f9318826f3f5335d X-VCS-Branch: master Date: Mon, 18 Jun 2018 12:23:09 +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: 7b54d2c4-1a6a-4b2e-8697-06dc7a209898 X-Archives-Hash: ce40695bf736eaff19dcdb7712373972 commit: 78949b861d03eab6c7dbfae6f9318826f3f5335d Author: Tony Vroon gentoo org> AuthorDate: Mon Jun 18 12:22:41 2018 +0000 Commit: Tony Vroon gentoo org> CommitDate: Mon Jun 18 12:22:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78949b86 net-libs/libsrtp: Fix static build. It is now libsrtp2.a, not just libsrtp.a No revision bump, if you were affected this didn't build for you. Closes: https://bugs.gentoo.org/652114 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-libs/libsrtp/libsrtp-2.1.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/libsrtp/libsrtp-2.1.0.ebuild b/net-libs/libsrtp/libsrtp-2.1.0.ebuild index 791ef4e5563..0ae62cb07f7 100644 --- a/net-libs/libsrtp/libsrtp-2.1.0.ebuild +++ b/net-libs/libsrtp/libsrtp-2.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -53,7 +53,7 @@ multilib_src_configure() { } multilib_src_compile() { - use static-libs && emake ${PN}.a + use static-libs && emake ${PN}2.a emake shared_library use test && emake test }