Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Dec 2017 18:10:45 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r457382 - head/security/1password-client
Message-ID:  <201712271810.vBRIAjYI029893@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712271810.vBRIAjYI029893>