Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Apr 2021 20:30:07 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b65badcf13f2 - main - games/stockfish: fix build on powerpc64le
Message-ID:  <202104142030.13EKU7jA008610@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b65badcf13f283c3047d0b28d9d4a46eb91dd5eb

commit b65badcf13f283c3047d0b28d9d4a46eb91dd5eb
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2021-04-14 20:30:41 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2021-04-14 20:30:41 +0000

    games/stockfish: fix build on powerpc64le
    
    powerpc64le uses the same flags as powerpc64.
---
 games/stockfish/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 



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