aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluau-project <luau.project@gmail.com>2025-12-27 16:19:14 -0300
committerHisham Muhammad <hisham@gobolinux.org>2025-12-27 19:55:11 -0300
commit215cbc906a574687541e8cf8be84639fda20f57d (patch)
tree97e235713711aa442a09d26348bb5b260ad8fdab
parent6b7b6c2506f9abef059794663a8598a736837cc4 (diff)
downloadluarocks-215cbc906a574687541e8cf8be84639fda20f57d.tar.gz
luarocks-215cbc906a574687541e8cf8be84639fda20f57d.tar.bz2
luarocks-215cbc906a574687541e8cf8be84639fda20f57d.zip
GNUmakefile: test for LUA_VERSION as 5.5
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 37cfdf7d..c938756d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -119,7 +119,7 @@ install: all install-config
119 do \ 119 do \
120 $(INSTALL_DATA) "$$f" '$(DESTDIR)$(luadir)'/`echo $$f | sed 's,^src/,,'`; \ 120 $(INSTALL_DATA) "$$f" '$(DESTDIR)$(luadir)'/`echo $$f | sed 's,^src/,,'`; \
121 done 121 done
122ifeq (,$(findstring $(LUA_VERSION),"5.3" "5.4")) 122ifeq (,$(findstring $(LUA_VERSION),"5.3" "5.4" "5.5"))
123 find src/compat53/ -type d | while read f; \ 123 find src/compat53/ -type d | while read f; \
124 do \ 124 do \
125 mkdir -p '$(DESTDIR)$(luadir)'/`echo $$f | sed 's,^src/,,'`; \ 125 mkdir -p '$(DESTDIR)$(luadir)'/`echo $$f | sed 's,^src/,,'`; \