aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Hu <henry.hu.sh@gmail.com>2022-10-22 17:55:39 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2022-10-22 17:56:28 +0000
commit062f201c5e352d80be1e066f27c28e5d290f8b11 (patch)
treebf809ce9859f47721fbe3931fd8a8b80a9ab66a0
parent96b0bf14075f83df424fb862141aff00837a79a8 (diff)
downloadports-062f201c5e352d80be1e066f27c28e5d290f8b11.tar.gz
ports-062f201c5e352d80be1e066f27c28e5d290f8b11.zip
games/libretro-desmume2015: Fix JIT incorrectly disabled
PR: 264137
-rw-r--r--games/libretro-desmume2015/Makefile4
1 files 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