git: 88fbb2c746fe - main - security/hashcat: fix conditional dependency

From: Stefan Eßer <se_at_FreeBSD.org>
Date: Sat, 13 Jun 2026 13:18:28 UTC
The branch main has been updated by se:

URL: https://cgit.FreeBSD.org/ports/commit/?id=88fbb2c746fefa33ecd0b7eb2ef8386318b2190f

commit 88fbb2c746fefa33ecd0b7eb2ef8386318b2190f
Author:     Stefan Eßer <se@FreeBSD.org>
AuthorDate: 2026-06-13 13:17:00 +0000
Commit:     Stefan Eßer <se@FreeBSD.org>
CommitDate: 2026-06-13 13:17:00 +0000

    security/hashcat: fix conditional dependency
    
    The test for arm64 should have been ${ARCH} == aarch64.
---
 security/hashcat/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/security/hashcat/Makefile b/security/hashcat/Makefile
index d3328394a091..e88e307920d5 100644
--- a/security/hashcat/Makefile
+++ b/security/hashcat/Makefile
@@ -1,7 +1,7 @@
 PORTNAME=	hashcat
 PORTVERSION=	7.1.2
 DISTVERSIONPREFIX=	v
-PORTREVISION=	10
+PORTREVISION=	11
 PORTEPOCH=	1
 CATEGORIES=	security
 
@@ -53,7 +53,7 @@ BRAIN_CFLAGS=		-DWITH_BRAIN -Ideps/git/xxHash
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == arm64
+.if ${ARCH} == aarch64
 BUILD_DEPENDS+=	sse2neon>=1:devel/sse2neon
 .endif