net-analyzer/argus: Pass AR/RANLIB to emake

Closes: https://bugs.gentoo.org/724836
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2020-10-03 18:20:06 +02:00
parent 52ab93e13d
commit 0aba05157b

View File

@@ -3,7 +3,7 @@
EAPI=7
inherit autotools
inherit autotools toolchain-funcs
DESCRIPTION="network Audit Record Generation and Utilization System"
HOMEPAGE="https://openargus.org/"
@@ -64,7 +64,10 @@ src_configure() {
}
src_compile() {
emake CCOPT="${CFLAGS} ${LDFLAGS}"
emake \
CCOPT="${CFLAGS} ${LDFLAGS}" \
AR="$(tc-getAR)" \
RANLIB="$(tc-getRANLIB)"
}
src_install() {