Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Feb 2021 22:57:19 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r566007 - head/math/sleef
Message-ID:  <202102182257.11IMvJvb082624@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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=""



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