git: 21e62383026c - main - lang/gluon: fix build on armv7

From: Piotr Kubaj <pkubaj_at_FreeBSD.org>
Date: Mon, 13 Jan 2025 19:50:06 UTC
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=21e62383026c7851f72dae2e58516360b7a0b8aa

commit 21e62383026c7851f72dae2e58516360b7a0b8aa
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2025-01-13 10:31:27 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2025-01-13 19:49:52 +0000

    lang/gluon: fix build on armv7
    
    Same issue as i386 and powerpc.
---
 lang/gluon/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/gluon/Makefile b/lang/gluon/Makefile
index d2afde478786..9f19632f5c2a 100644
--- a/lang/gluon/Makefile
+++ b/lang/gluon/Makefile
@@ -394,7 +394,7 @@ PLIST_FILES=	bin/${PORTNAME}
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == i386 || ${ARCH} == powerpc
+.if ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc
 LTO_UNSAFE=	yes
 .endif