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 8CE78138334 for ; Wed, 5 Jun 2019 14:20:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E191E0858; Wed, 5 Jun 2019 14:20:22 +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 0D2B8E0858 for ; Wed, 5 Jun 2019 14:20:21 +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 D5ACF34575A for ; Wed, 5 Jun 2019 14:20:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5038B5FE for ; Wed, 5 Jun 2019 14:20:03 +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: <1559744379.50c4d5cfbf1330b3b5381c6205d4acdbc46d52ee.haubi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libb2/libb2-0.98.1.ebuild X-VCS-Directories: app-crypt/libb2/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: 50c4d5cfbf1330b3b5381c6205d4acdbc46d52ee X-VCS-Branch: master Date: Wed, 5 Jun 2019 14:20:03 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bdf19e14-32b8-44d6-95ab-59a4abc1e958 X-Archives-Hash: f6a110de832874bb3a69d444c8c6c361 commit: 50c4d5cfbf1330b3b5381c6205d4acdbc46d52ee Author: Michael Haubenwallner gentoo org> AuthorDate: Wed Jun 5 13:43:38 2019 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Wed Jun 5 14:19:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c4d5cf app-crypt/libb2: use -no-undefined libtool flag https://github.com/BLAKE2/libb2/pull/28 Closes: https://bugs.gentoo.org/687442 Package-Manager: Portage-2.3.62, Repoman-2.3.11 Signed-off-by: Michael Haubenwallner gentoo.org> app-crypt/libb2/libb2-0.98.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1.ebuild index 440bcd1bb91..6ed261ba062 100644 --- a/app-crypt/libb2/libb2-0.98.1.ebuild +++ b/app-crypt/libb2/libb2-0.98.1.ebuild @@ -35,6 +35,8 @@ src_prepare() { default # fix bashism sed -i -e 's/ == / = /' configure.ac || die + # https://github.com/BLAKE2/libb2/pull/28 + echo 'libb2_la_LDFLAGS = -no-undefined' >> src/Makefile.am || die eautoreconf # upstream doesn't make releases }