From: Fabian Groffen Date: Wed, 5 Jun 2019 09:30:47 +0000 (+0200) Subject: app-crypt/libb2: fix check to respect CFLAGS, thanks jer X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c872ec9942b167d7d42c7d748c88a0827c52f022;p=gentoo.git app-crypt/libb2: fix check to respect CFLAGS, thanks jer Closes: https://bugs.gentoo.org/687412 Signed-off-by: Fabian Groffen Package-Manager: Portage-2.3.66, Repoman-2.3.11 --- diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1.ebuild index 1f7105ca4785..440bcd1bb916 100644 --- a/app-crypt/libb2/libb2-0.98.1.ebuild +++ b/app-crypt/libb2/libb2-0.98.1.ebuild @@ -45,9 +45,18 @@ src_configure() { $(use_enable openmp) } -src_compile() { +do_make() { # respect our CFLAGS when native-cflags is not in effect - emake $(use native-cflags && echo no)CFLAGS="${CFLAGS}" + local openmp=$(use openmp && echo -fopenmp) + emake $(use native-cflags && echo no)CFLAGS="${CFLAGS} ${openmp}" "$@" +} + +src_compile() { + do_make +} + +src_test() { + do_make check } src_install() {