Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 May 2021 20:18:29 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: aa073ed1671a - main - math/py-ducc0: fix build on powerpc64
Message-ID:  <202105022018.142KITcj022495@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=aa073ed1671a76f6f8611b58f7b01a4986a7dcc4

commit aa073ed1671a76f6f8611b58f7b01a4986a7dcc4
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2021-05-02 20:18:24 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2021-05-02 20:18:24 +0000

    math/py-ducc0: fix build on powerpc64
    
    Same issue as on powerpc64le.
---
 math/py-ducc0/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/math/py-ducc0/Makefile b/math/py-ducc0/Makefile
index e56412e97a28..9f229e535e1b 100644
--- a/math/py-ducc0/Makefile
+++ b/math/py-ducc0/Makefile
@@ -23,7 +23,7 @@ MAKE_ENV=	DUCC0_OPTIMIZATION=none
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == powerpc64le
+.if ${ARCH:Mpowerpc64*}
 CFLAGS+=	-DNO_WARN_X86_INTRINSICS
 USES+=		compiler:gcc-c++11-lib
 .else



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105022018.142KITcj022495>