aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-04-14 20:30:41 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-04-14 20:30:41 +0000
commitb65badcf13f283c3047d0b28d9d4a46eb91dd5eb (patch)
treeffd87c53c9928948f6a9a7fe0caa9a295cb6d2f9
parentace11e8cbcd8bfc162ee403d743cbc4583282235 (diff)
downloadports-b65badcf13f283c3047d0b28d9d4a46eb91dd5eb.tar.gz
ports-b65badcf13f283c3047d0b28d9d4a46eb91dd5eb.zip
games/stockfish: fix build on powerpc64le
powerpc64le uses the same flags as powerpc64.
-rw-r--r--games/stockfish/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/stockfish/Makefile b/games/stockfish/Makefile
index 1ad4b7bba3e4..63b863de5cac 100644
--- a/games/stockfish/Makefile
+++ b/games/stockfish/Makefile
@@ -77,7 +77,7 @@ MYARCH= x86-64
. endif
.elif ${ARCH} == powerpc
MYARCH= ppc-32
-.elif ${ARCH} == powerpc64
+.elif ${ARCH:Mpowerpc64*}
MYARCH= ppc-64
.endif