svn commit: r549942 - head/math/gmp

Piotr Kubaj pkubaj at FreeBSD.org
Thu Sep 24 19:28:37 UTC 2020


Author: pkubaj
Date: Thu Sep 24 19:28:36 2020
New Revision: 549942
URL: https://svnweb.freebsd.org/changeset/ports/549942

Log:
  math/gmp: fix build on powerpc64le with CPU_OPTS

Modified:
  head/math/gmp/Makefile

Modified: head/math/gmp/Makefile
==============================================================================
--- head/math/gmp/Makefile	Thu Sep 24 19:25:47 2020	(r549941)
+++ head/math/gmp/Makefile	Thu Sep 24 19:28:36 2020	(r549942)
@@ -39,7 +39,7 @@ MAKE_JOBS_UNSAFE=yes
 .if ! ${PORT_OPTIONS:MCPU_OPTS}
 CONFIGURE_ARGS+=--build=${CONFIGURE_TARGET}
 .elif ${ARCH:S/64//} != ${ARCH}
-.if ${ARCH} == powerpc64
+.if ${ARCH:Mpowerpc64*}
 CONFIGURE_ENV+=	ABI="mode64"
 .else
 CONFIGURE_ENV+=	ABI="64"


More information about the svn-ports-all mailing list