aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2020-09-25 03:28:36 +0800
committerPiotr Kubaj <pkubaj@FreeBSD.org>2020-09-25 03:28:36 +0800
commit381269f441ae66764c99686dd94196c42ac6f523 (patch)
tree1d2314abd37360c7d74f19565c09f0557ab7eaba
parentf59f48725a00d93e78b27d337a139e0c83fe6c35 (diff)
downloadfreebsd-ports-gnome-381269f441ae66764c99686dd94196c42ac6f523.tar.gz
freebsd-ports-gnome-381269f441ae66764c99686dd94196c42ac6f523.tar.zst
freebsd-ports-gnome-381269f441ae66764c99686dd94196c42ac6f523.zip
math/gmp: fix build on powerpc64le with CPU_OPTS
-rw-r--r--math/gmp/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/gmp/Makefile b/math/gmp/Makefile
index ff80dcf10187..d90515820051 100644
--- a/math/gmp/Makefile
+++ b/math/gmp/Makefile
@@ -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"