Skip to content

Commit

Permalink
games/libretro-desmume2015: Fix JIT incorrectly disabled
Browse files Browse the repository at this point in the history
PR:		264137
  • Loading branch information
HenryHu authored and lwhsu committed Oct 22, 2022
1 parent 96b0bf1 commit 062f201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions games/libretro-desmume2015/Makefile
@@ -1,6 +1,6 @@
PORTNAME= libretro-desmume2015
PORTVERSION= 0.20220405
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= games

MAINTAINER= ports@FreeBSD.org
Expand All @@ -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

Expand Down

0 comments on commit 062f201

Please sign in to comment.