From 7b94e58fa60272c4aec9f85595d9a057afcace90 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Sat, 16 Jan 2021 17:19:28 +0000 Subject: [PATCH] emulators/mame: add support for powerpc64le --- emulators/mame/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile index 013fb077f42e..2270e6cb8149 100644 --- a/emulators/mame/Makefile +++ b/emulators/mame/Makefile @@ -10,8 +10,8 @@ COMMENT= Multi Arcade Machine Emulator LICENSE= GPLv2 -ONLY_FOR_ARCHS= amd64 i386 powerpc64 -ONLY_FOR_ARCHS_REASON= not yet ported to any arch other than x86 and powerpc64 +ONLY_FOR_ARCHS= amd64 i386 powerpc64 powerpc64le +ONLY_FOR_ARCHS_REASON= not yet ported to any arch other than x86 and powerpc64(le) LIB_DEPENDS= libFLAC.so:audio/flac \ libexpat.so:textproc/expat2 \ @@ -61,7 +61,7 @@ MTARGET?= mame .include -.if ${ARCH} == amd64 || ${ARCH} == powerpc64 +.if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*} MAKE_ARGS+= PTR64=1 EMULATOR= ${MSUBTARGET}64 .else