diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-04-19 10:30:12 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-04-19 12:09:20 +0000 |
commit | a3f5e20929cdb8a33ac629e005cc49261472b2db (patch) | |
tree | c668a6943cde2bcf1c787b69021dea4bfffc7953 | |
parent | dc669f8d68757e894614a7d8ac9eaddc1545d619 (diff) | |
download | ports-a3f5e20929cdb8a33ac629e005cc49261472b2db.tar.gz ports-a3f5e20929cdb8a33ac629e005cc49261472b2db.zip |
biology/py-scikit-bio: build with clang on powerpc64le
-rw-r--r-- | biology/py-scikit-bio/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/biology/py-scikit-bio/Makefile b/biology/py-scikit-bio/Makefile index 0b446244e87f..eedfa79a831b 100644 --- a/biology/py-scikit-bio/Makefile +++ b/biology/py-scikit-bio/Makefile @@ -1,5 +1,6 @@ PORTNAME= scikit-bio PORTVERSION= 0.5.7 +PORTREVISION= 1 CATEGORIES= biology education python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -34,7 +35,7 @@ CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}ddtrace # lib/python3.8/site-packages/ .if ${ARCH} == i386 CFLAGS+= -msse2 # workaround for https://github.com/biocore/scikit-bio/issues/1727 CXXFLAGS+= -msse2 -.elif ${ARCH:Mpowerpc64*} +.elif ${ARCH} == powerpc64 CFLAGS+= -DNO_WARN_X86_INTRINSICS USE_GCC= yes .endif |