svn commit: r557030 - head/comms/rxtx

Piotr Kubaj pkubaj at FreeBSD.org
Fri Dec 4 23:34:08 UTC 2020


Author: pkubaj
Date: Fri Dec  4 23:34:07 2020
New Revision: 557030
URL: https://svnweb.freebsd.org/changeset/ports/557030

Log:
  comms/rxtx: fix packaging on powerpc64le
  
  Otherwise powerpc64le string is replaced by ppc64, but it should be ppc64le.

Modified:
  head/comms/rxtx/Makefile

Modified: head/comms/rxtx/Makefile
==============================================================================
--- head/comms/rxtx/Makefile	Fri Dec  4 23:19:58 2020	(r557029)
+++ head/comms/rxtx/Makefile	Fri Dec  4 23:34:07 2020	(r557030)
@@ -30,6 +30,6 @@ USE_LDCONFIG=	yes
 MAKE_JOBS_UNSAFE=	yes
 
 PLIST_SUB=	JAVA_HOME=${JAVA_HOME:S,^${PREFIX}/,,}
-PLIST_SUB+=	ARCH=${ARCH:C/armv.*/arm/:C/powerpc64.*/ppc64/}
+PLIST_SUB+=	ARCH=${ARCH:C/armv.*/arm/:S/powerpc64/ppc64/}
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list