Gentoo Archives: gentoo-commits

From: Michael Haubenwallner <haubi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/
Date: Wed, 05 Jun 2019 14:20:24
Message-Id: 1559744379.50c4d5cfbf1330b3b5381c6205d4acdbc46d52ee.haubi@gentoo
1 commit: 50c4d5cfbf1330b3b5381c6205d4acdbc46d52ee
2 Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 5 13:43:38 2019 +0000
4 Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 5 14:19:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c4d5cf
7
8 app-crypt/libb2: use -no-undefined libtool flag
9
10 https://github.com/BLAKE2/libb2/pull/28
11
12 Closes: https://bugs.gentoo.org/687442
13 Package-Manager: Portage-2.3.62, Repoman-2.3.11
14 Signed-off-by: Michael Haubenwallner <haubi <AT> gentoo.org>
15
16 app-crypt/libb2/libb2-0.98.1.ebuild | 2 ++
17 1 file changed, 2 insertions(+)
18
19 diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1.ebuild
20 index 440bcd1bb91..6ed261ba062 100644
21 --- a/app-crypt/libb2/libb2-0.98.1.ebuild
22 +++ b/app-crypt/libb2/libb2-0.98.1.ebuild
23 @@ -35,6 +35,8 @@ src_prepare() {
24 default
25 # fix bashism
26 sed -i -e 's/ == / = /' configure.ac || die
27 + # https://github.com/BLAKE2/libb2/pull/28
28 + echo 'libb2_la_LDFLAGS = -no-undefined' >> src/Makefile.am || die
29 eautoreconf # upstream doesn't make releases
30 }