games/libretro-desmume2015: Fix JIT incorrectly disabled

PR:		264137
This commit is contained in:
Henry Hu 2022-10-23 01:55:39 +08:00 committed by Li-Wen Hsu
parent 96b0bf1407
commit 062f201c5e
No known key found for this signature in database
GPG Key ID: 82B261B14D3BC7AF
1 changed files with 2 additions and 2 deletions

View File

@ -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