commit: c8f4de8531b032b79b7ac7992c63fa0b796a8486 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org> AuthorDate: Sat Apr 17 22:39:11 2021 +0000 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org> CommitDate: Sat Apr 17 22:39:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f4de85
app-text/lowdown-0.8.4: Respect LDFLAGS (bug #783393) Also don't directly call ar, and fix musl support. Closes: https://bugs.gentoo.org/783393 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org> app-text/lowdown/lowdown-0.8.4.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-text/lowdown/lowdown-0.8.4.ebuild b/app-text/lowdown/lowdown-0.8.4.ebuild index 6e601e6125f..dd0f98fee37 100644 --- a/app-text/lowdown/lowdown-0.8.4.ebuild +++ b/app-text/lowdown/lowdown-0.8.4.ebuild @@ -28,6 +28,10 @@ src_configure() { CC="$(tc-getCC)" ./configure || die "./configure failed" } +src_compile() { + emake LDFLAGS="${LDFLAGS}" AR="$(tc-getAR)" $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') +} + src_test() { emake regress }
