Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Oct 2022 17:56:42 GMT
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 062f201c5e35 - main - games/libretro-desmume2015: Fix JIT incorrectly disabled
Message-ID:  <202210221756.29MHugRU084374@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210221756.29MHugRU084374>