svn commit: r457382 - head/security/1password-client

Mark Linimon linimon at FreeBSD.org
Wed Dec 27 18:10:47 UTC 2017


Author: linimon
Date: Wed Dec 27 18:10:45 2017
New Revision: 457382
URL: https://svnweb.freebsd.org/changeset/ports/457382

Log:
  Fix build on arm (the port is for 32-bit only).  While here, canonicalize
  the ARCH statements.

Modified:
  head/security/1password-client/Makefile

Modified: head/security/1password-client/Makefile
==============================================================================
--- head/security/1password-client/Makefile	Wed Dec 27 17:47:29 2017	(r457381)
+++ head/security/1password-client/Makefile	Wed Dec 27 18:10:45 2017	(r457382)
@@ -9,7 +9,7 @@ MASTER_SITES=	https://cache.agilebits.com/dist/1P/op/p
 MAINTAINER=	adamw at FreeBSD.org
 COMMENT=	1Password CLI client
 
-ONLY_FOR_ARCHS=	aarch64 amd64 i386
+ONLY_FOR_ARCHS=	amd64 armv6 armv7 i386
 
 USES=		zip
 NO_WRKSUBDIR=	yes
@@ -23,11 +23,11 @@ do-install:
 
 .include <bsd.port.pre.mk>
 
-.if   ${ARCH} == "amd64"
+.if ${ARCH} == amd64
 DISTNAME=	op_freebsd_amd64_v${PORTVERSION}
-.elif ${ARCH} == "aarch64"
+.elif ${ARCH} == armv6 || ${ARCH} == armv7
 DISTNAME=	op_freebsd_arm_v${PORTVERSION}
-.elif ${ARCH} == "i386"
+.elif ${ARCH} == i386
 DISTNAME=	op_freebsd_386_v${PORTVERSION}
 .endif
 


More information about the svn-ports-all mailing list