From 4c82cf6084dd52c73a788bd7c8047fa133cd41c9 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Sun, 27 Jul 2025 10:56:29 +0200 Subject: Tiny makefile tweak for Lua 5.5 --- Shared.makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared.makefile b/Shared.makefile index d1a96fb..3809538 100644 --- a/Shared.makefile +++ b/Shared.makefile @@ -30,7 +30,7 @@ ifeq "$(LUAROCKS)" "" $(warning LUA_DEV not defined - try i.e. 'make LUA_DEV=/c/Program\ Files/Lua/5.1') # this assumes Lua was built and installed from source and everything is located in default folders (/usr/local/include and /usr/local/bin) LUA_FLAGS := -I "/usr/local/include" - LUA_LIBS := $(word 1,$(shell which lua54.$(_SO) 2>/dev/null) $(shell which lua53.$(_SO) 2>/dev/null) $(shell which lua52.$(_SO) 2>/dev/null) $(shell which lua51$(_SO) 2>/dev/null)) + LUA_LIBS := $(word 1,$(shell which lua55.$(_SO) 2>/dev/null) $(shell which lua54.$(_SO) 2>/dev/null) $(shell which lua53.$(_SO) 2>/dev/null) $(shell which lua52.$(_SO) 2>/dev/null) $(shell which lua51$(_SO) 2>/dev/null)) $(info detected LUA_LIBS as $(LUA_LIBS)) else LUA_FLAGS := -I "$(LUA_DEV)/include" -- cgit v1.2.3-55-g6feb