From 215cbc906a574687541e8cf8be84639fda20f57d Mon Sep 17 00:00:00 2001 From: luau-project Date: Sat, 27 Dec 2025 16:19:14 -0300 Subject: GNUmakefile: test for LUA_VERSION as 5.5 --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 37cfdf7d..c938756d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -119,7 +119,7 @@ install: all install-config do \ $(INSTALL_DATA) "$$f" '$(DESTDIR)$(luadir)'/`echo $$f | sed 's,^src/,,'`; \ done -ifeq (,$(findstring $(LUA_VERSION),"5.3" "5.4")) +ifeq (,$(findstring $(LUA_VERSION),"5.3" "5.4" "5.5")) find src/compat53/ -type d | while read f; \ do \ mkdir -p '$(DESTDIR)$(luadir)'/`echo $$f | sed 's,^src/,,'`; \ -- cgit v1.2.3-55-g6feb