Date: Wed, 26 Jan 2022 00:17:45 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: 0e3bf07e2ced - main - audio/jack: fix build on powerpc64le Message-ID: <202201260017.20Q0HjPo073500@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=0e3bf07e2ced19b9f43100288f5733eed7ff08de commit 0e3bf07e2ced19b9f43100288f5733eed7ff08de Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2022-01-26 00:05:55 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2022-01-26 00:05:55 +0000 audio/jack: fix build on powerpc64le Same issue as on powerpc and powerpc64. --- audio/jack/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/jack/Makefile b/audio/jack/Makefile index c655e2d00868..25a0b22e8c03 100644 --- a/audio/jack/Makefile +++ b/audio/jack/Makefile @@ -51,7 +51,7 @@ PROFILING_CONFIGURE_ON= --profile .include <bsd.port.options.mk> -.if ${ARCH} == powerpc || ${ARCH} == powerpc64 +.if ${ARCH} == powerpc || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le USES+= compiler:gcc-c++11-lib .else USES+= compiler:c11
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201260017.20Q0HjPo073500>