From b487ce32b84879e89ee1de099a5ebece4542c003 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Sat, 23 Oct 2021 00:36:46 +0000 Subject: [PATCH] games/solarus: enable LUAJIT on powerpc64le --- games/solarus/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/games/solarus/Makefile b/games/solarus/Makefile index a7c95dce10dc..b8e9c2ae10d8 100644 --- a/games/solarus/Makefile +++ b/games/solarus/Makefile @@ -34,6 +34,7 @@ OPTIONS_DEFAULT_amd64= LUAJIT OPTIONS_DEFAULT_i386= LUAJIT OPTIONS_DEFAULT_powerpc= LUAJIT OPTIONS_DEFAULT_powerpc64= LUAJIT +OPTIONS_DEFAULT_powerpc64le= LUAJIT LUAJIT_CMAKE_BOOL= SOLARUS_USE_LUAJIT LUAJIT_DESC= Use LuaJIT instead of standard Lua @@ -44,7 +45,7 @@ CMAKE_ARGS+= -DSOLARUS_MANUAL_INSTALL_DESTINATION:STRING="man" .include -.if ${ARCH} == powerpc64 +.if ${ARCH:Mpowerpc64*} LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit-openresty .endif