aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-16 09:00:17 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-16 09:00:17 +0000
commit2cbea840ca02d107674d700fcb3d7d6c4eca51b6 (patch)
treeb671bbee144de12f83e962c56e3f052e58bff09f
parentb3a2e92fdbcc02c44d6f79239af85f36e366cab6 (diff)
downloadports-2cbea840ca02d107674d700fcb3d7d6c4eca51b6.tar.gz
ports-2cbea840ca02d107674d700fcb3d7d6c4eca51b6.zip
devel/liboil: fix build on powerpc
Same issue as on powerpc64.
-rw-r--r--devel/liboil/Makefile2
1 files changed, 1 insertions, 1 deletions
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