svn commit: r555567 - head/editors/libreoffice

Piotr Kubaj pkubaj at FreeBSD.org
Tue Nov 17 16:33:42 UTC 2020


Author: pkubaj
Date: Tue Nov 17 16:33:42 2020
New Revision: 555567
URL: https://svnweb.freebsd.org/changeset/ports/555567

Log:
  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.

Modified:
  head/editors/libreoffice/Makefile

Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile	Tue Nov 17 16:07:01 2020	(r555566)
+++ head/editors/libreoffice/Makefile	Tue Nov 17 16:33:42 2020	(r555567)
@@ -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
 


More information about the svn-ports-all mailing list