svn commit: r566007 - head/math/sleef

Piotr Kubaj pkubaj at FreeBSD.org
Thu Feb 18 22:57:19 UTC 2021


Author: pkubaj
Date: Thu Feb 18 22:57:19 2021
New Revision: 566007
URL: https://svnweb.freebsd.org/changeset/ports/566007

Log:
  math/sleef: fix build on powerpc64le
  
  Same issue as on powerpc64.

Modified:
  head/math/sleef/Makefile

Modified: head/math/sleef/Makefile
==============================================================================
--- head/math/sleef/Makefile	Thu Feb 18 22:43:51 2021	(r566006)
+++ head/math/sleef/Makefile	Thu Feb 18 22:57:19 2021	(r566007)
@@ -21,7 +21,7 @@ CFLAGS_powerpc64=	-mpower8-vector
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == powerpc64
+.if ${ARCH:Mpowerpc64*}
 PLIST_SUB+=	NO_PPC64="@comment "
 .else
 PLIST_SUB+=	NO_PPC64=""


More information about the svn-ports-all mailing list