git: 062f201c5e35 - main - games/libretro-desmume2015: Fix JIT incorrectly disabled

From: Li-Wen Hsu <lwhsu_at_FreeBSD.org>
Date: Sat, 22 Oct 2022 17:56:42 UTC
The branch main has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=062f201c5e352d80be1e066f27c28e5d290f8b11

commit 062f201c5e352d80be1e066f27c28e5d290f8b11
Author:     Henry Hu <henry.hu.sh@gmail.com>
AuthorDate: 2022-10-22 17:55:39 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2022-10-22 17:56:28 +0000

    games/libretro-desmume2015: Fix JIT incorrectly disabled
    
    PR:             264137
---
 games/libretro-desmume2015/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games/libretro-desmume2015/Makefile b/games/libretro-desmume2015/Makefile
index 596a28b1facb..500a6ed15fbe 100644
--- a/games/libretro-desmume2015/Makefile
+++ b/games/libretro-desmume2015/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	libretro-desmume2015
 PORTVERSION=	0.20220405
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games
 
 MAINTAINER=	ports@FreeBSD.org
@@ -26,7 +26,7 @@ MAKEFILE=	Makefile.freebsd
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} != aarch64 || ${ARCH} != amd64 || !${ARCH:Marmv*} || ${ARCH} != i386
+.if ${ARCH} != aarch64 && ${ARCH} != amd64 && !${ARCH:Marmv*} && ${ARCH} != i386
 MAKE_ENV+=	DESMUME_JIT=0
 .endif