commit:     c872ec9942b167d7d42c7d748c88a0827c52f022
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Jun  5 09:30:47 2019 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Jun  5 09:30:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c872ec99

app-crypt/libb2: fix check to respect CFLAGS, thanks jer

Closes: https://bugs.gentoo.org/687412
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 app-crypt/libb2/libb2-0.98.1.ebuild | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild 
b/app-crypt/libb2/libb2-0.98.1.ebuild
index 1f7105ca478..440bcd1bb91 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() {

Reply via email to