svn commit: r552614 - head/security/pgpin

Piotr Kubaj pkubaj at FreeBSD.org
Sun Oct 18 01:07:33 UTC 2020


Author: pkubaj
Date: Sun Oct 18 01:07:32 2020
New Revision: 552614
URL: https://svnweb.freebsd.org/changeset/ports/552614

Log:
  security/pgpin: fix build on powerpc64le
  
  All FreeBSD architectures use the same command, just use the one for powerpc64 on powerpc64le (it could be even the one for amd64).

Modified:
  head/security/pgpin/Makefile

Modified: head/security/pgpin/Makefile
==============================================================================
--- head/security/pgpin/Makefile	Sun Oct 18 01:03:42 2020	(r552613)
+++ head/security/pgpin/Makefile	Sun Oct 18 01:07:32 2020	(r552614)
@@ -20,7 +20,7 @@ BROKEN_mips64=		Does not build
 USES=		tar:tgz
 WRKSRC=		${WRKDIR}/pgp263in/src
 MAKEFILE=	makefile
-ALL_TARGET=	freebsd-${ARCH} OS_CFLAGS="${CFLAGS}"
+ALL_TARGET=	freebsd-${ARCH:S/powerpc64le/powerpc64/} OS_CFLAGS="${CFLAGS}"
 PGPLIB=		${STAGEDIR}${PREFIX}/lib/pgpin
 OPTIONS_DEFINE=	DOCS
 


More information about the svn-ports-all mailing list