git: e968e4b48f13 - main - converters/wkhtmltopdf: fix build on powerpc

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jun 16 09:00:37 UTC 2021


The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=e968e4b48f13edf41954971ed6e0d579ecec1998

commit e968e4b48f13edf41954971ed6e0d579ecec1998
Author:     Piotr Kubaj <pkubaj at FreeBSD.org>
AuthorDate: 2021-06-16 09:00:20 +0000
Commit:     Piotr Kubaj <pkubaj at FreeBSD.org>
CommitDate: 2021-06-16 09:00:20 +0000

    converters/wkhtmltopdf: fix build on powerpc
    
    Same issue as on i386.
---
 converters/wkhtmltopdf/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/converters/wkhtmltopdf/Makefile b/converters/wkhtmltopdf/Makefile
index ebdfa5de4b07..d7ce4cec8956 100644
--- a/converters/wkhtmltopdf/Makefile
+++ b/converters/wkhtmltopdf/Makefile
@@ -55,7 +55,7 @@ MAKE_ARGS=	INSTALL_ROOT="${STAGEDIR}${PREFIX}"
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "i386" || ${CHOSEN_COMPILER_TYPE} == gcc
+.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${CHOSEN_COMPILER_TYPE} == gcc
 USE_GCC=	8
 .endif
 


More information about the dev-commits-ports-main mailing list