Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/vboot-utils/
Date: Sat, 05 Jan 2019 01:35:37
Message-Id: 1546652022.db7f353c9db529295c7c1fa1aa66751bbc9c1594.zmedico@gentoo
1 commit: db7f353c9db529295c7c1fa1aa66751bbc9c1594
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 5 01:31:08 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 5 01:33:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db7f353c
7
8 sys-boot/vboot-utils: fix 72_p20181229 for libressl
9
10 dumpRSAPublicKey.c:(.text+0x150): undefined reference to `RSA_get0_key'
11
12 Reported-by: Toralf Förster <toralf <AT> gentoo.org>
13 Closes: https://bugs.gentoo.org/674522
14 Package-Manager: Portage-2.3.54, Repoman-2.3.12
15 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
16
17 sys-boot/vboot-utils/vboot-utils-72_p20181229.ebuild | 4 ++++
18 1 file changed, 4 insertions(+)
19
20 diff --git a/sys-boot/vboot-utils/vboot-utils-72_p20181229.ebuild b/sys-boot/vboot-utils/vboot-utils-72_p20181229.ebuild
21 index 3469619cf31..273d3ec48ff 100644
22 --- a/sys-boot/vboot-utils/vboot-utils-72_p20181229.ebuild
23 +++ b/sys-boot/vboot-utils/vboot-utils-72_p20181229.ebuild
24 @@ -53,6 +53,10 @@ src_prepare() {
25 -i tests/common.sh || die
26 sed -e "s:/mnt/host/source/src/platform/vboot_reference:${S}:" \
27 -i tests/futility/expect_output/* || die
28 + if use libressl; then
29 + sed -e '/OPENSSL_VERSION_NUMBER/d' \
30 + -i host/include/openssl_compat.h || die #674522
31 + fi
32 }
33
34 _emake() {