svn commit: r557038 - head/devel/jna

Piotr Kubaj pkubaj at FreeBSD.org
Sat Dec 5 03:13:52 UTC 2020


Author: pkubaj
Date: Sat Dec  5 03:13:51 2020
New Revision: 557038
URL: https://svnweb.freebsd.org/changeset/ports/557038

Log:
  devel/jna: fix packaging on powerpc64le
  
  Before this change, powerpc64le would change into ppc64, while it should change into ppc64le.
  
  Approved by:	tier 2 blanket

Modified:
  head/devel/jna/Makefile

Modified: head/devel/jna/Makefile
==============================================================================
--- head/devel/jna/Makefile	Sat Dec  5 03:00:40 2020	(r557037)
+++ head/devel/jna/Makefile	Sat Dec  5 03:13:51 2020	(r557038)
@@ -36,7 +36,7 @@ TEST_TARGET=	test
 
 OPTIONS_DEFINE=	DOCS
 
-ANT_ARCH=	${ARCH:S/amd64/x86-64/:S/i386/x86/:C/powerpc64.*/ppc64/}
+ANT_ARCH=	${ARCH:S/amd64/x86-64/:S/i386/x86/:S/powerpc64/ppc64/}
 
 .include <bsd.port.options.mk>
 


More information about the svn-ports-all mailing list