Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jun 2021 09:00:33 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: 2cbea840ca02 - main - devel/liboil: fix build on powerpc
Message-ID:  <202106160900.15G90X3t015314@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=2cbea840ca02d107674d700fcb3d7d6c4eca51b6

commit 2cbea840ca02d107674d700fcb3d7d6c4eca51b6
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2021-06-16 09:00:17 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2021-06-16 09:00:17 +0000

    devel/liboil: fix build on powerpc
    
    Same issue as on powerpc64.
---
 devel/liboil/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devel/liboil/Makefile b/devel/liboil/Makefile
index 6b68dbba7fba..454b13c17d46 100644
--- a/devel/liboil/Makefile
+++ b/devel/liboil/Makefile
@@ -24,7 +24,7 @@ CFLAGS:=	${CFLAGS:N-O*} -O2
 
 .include <bsd.port.options.mk>
 
-.if defined(PPC_ABI) && ${PPC_ABI} == ELFv2
+.if (defined(PPC_ABI) && ${PPC_ABI} == ELFv2) || ${ARCH} == powerpc
 USES+=		compiler:gcc-c++11-lib
 .endif
 



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