svn commit: r554132 - head/www/node14

Piotr Kubaj pkubaj at FreeBSD.org
Thu Nov 5 13:57:15 UTC 2020


Author: pkubaj
Date: Thu Nov  5 13:57:14 2020
New Revision: 554132
URL: https://svnweb.freebsd.org/changeset/ports/554132

Log:
  www/node14: fix build on powerpc64le
  
  Same fix as other node ports.

Modified:
  head/www/node14/Makefile

Modified: head/www/node14/Makefile
==============================================================================
--- head/www/node14/Makefile	Thu Nov  5 13:00:32 2020	(r554131)
+++ head/www/node14/Makefile	Thu Nov  5 13:57:14 2020	(r554132)
@@ -33,6 +33,7 @@ OPTIONS_EXCLUDE_aarch64=	DTRACE
 OPTIONS_EXCLUDE_armv6=		DTRACE
 OPTIONS_EXCLUDE_armv7=		DTRACE
 OPTIONS_EXCLUDE_powerpc64=	DTRACE
+OPTIONS_EXCLUDE_powerpc64le=	DTRACE
 
 BUNDLED_SSL_DESC=		Use node.js's bundled OpenSSL implementation
 BUNDLED_SSL_USES_OFF=		ssl
@@ -83,7 +84,7 @@ LIB_DEPENDS+=	libbrotlidec.so:archivers/brotli \
 
 .include <bsd.port.options.mk>
 
-.if defined(PPC_ABI) && ${PPC_ABI} == ELFv2
+.if (defined(PPC_ABI) && ${PPC_ABI} == ELFv2) || ${ARCH} == powerpc64le
 EXTRA_PATCHES=		${PATCHDIR}/extra-patch-common.gypi
 .endif
 


More information about the svn-ports-all mailing list