summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2020-11-17 16:33:42 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2020-11-17 16:33:42 +0000
commitccdfcb2429df2dafde2e9cb6f1e7728e824de952 (patch)
treed6dd3892c72ccbd1448d1e328ef210308a8cf0d9 /editors
parentsecurity/wolfssl: fix build on big-endian (diff)
editors/libreoffice: enable skia on powerpc64le
While libreoffice doesn't build yet on powerpc64le, there's no reason to disable skia there since it's a little-endian platform.
Notes
Notes: svn path=/head/; revision=555567
Diffstat (limited to 'editors')
-rw-r--r--editors/libreoffice/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile
index c14f67830d74..248c38e44c2e 100644
--- a/editors/libreoffice/Makefile
+++ b/editors/libreoffice/Makefile
@@ -277,7 +277,7 @@ MAKE_ENV+= verbose=1
.include <bsd.port.pre.mk>
-.if ${ARCH:Mpowerpc*}
+.if ${ARCH} == powerpc || ${ARCH} == powerpcspe || ${ARCH} == powerpc64
CONFIGURE_ARGS+= --disable-skia
.endif