git: c38e58afdf01 - main - math/py-ducc0: use clang on powerpc64le

From: Piotr Kubaj <pkubaj_at_FreeBSD.org>
Date: Tue, 19 Apr 2022 12:09:35 UTC
The branch main has been updated by pkubaj:

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

commit c38e58afdf01b6a558620258b4fa634de2ecbc80
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-04-19 06:44:14 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-04-19 12:09:18 +0000

    math/py-ducc0: use clang on powerpc64le
    
    Builds fine.
---
 math/py-ducc0/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/math/py-ducc0/Makefile b/math/py-ducc0/Makefile
index 267fb50a823b..aa77c2fdfe44 100644
--- a/math/py-ducc0/Makefile
+++ b/math/py-ducc0/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	ducc0
 DISTVERSION=	0.22.0
+PORTREVISION=	1
 CATEGORIES=	math
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -24,7 +25,7 @@ MAKE_ENV=	DUCC0_OPTIMIZATION=none
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH:Mpowerpc64*}
+.if ${ARCH} == powerpc64
 CFLAGS+=	-DNO_WARN_X86_INTRINSICS
 USES+=		compiler:gcc-c++11-lib
 .else