aports/community/lua-mpack/dont-install-busted.patch
Jakub Jirutka 40a9e74cb9 community/lua-mpack: fix test on lua5.3
Makefile tries to download and install LuaRocks to install busted and its
dependencies. I workrounded this before, but somehow it now doesn't work
for lua5.3, I have no clue why. Doesn't matter, just remove dependency on
$(BUSTED) from the test target.
2017-03-18 15:24:04 +01:00

14 lines
308 B
Diff

Fix Makefile to not try to download and install LuaRocks and busted; use
system-provided busted.
--- a/binding/lua/Makefile
+++ b/binding/lua/Makefile
@@ -61,7 +61,7 @@
depsclean:
rm -rf $(DEPS_DIR)
-test: $(BUSTED) $(MPACK)
+test: $(MPACK)
$(BUSTED) -o gtest test.lua
valgrind: $(BUSTED) $(MPACK)