mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-09 23:37:05 +02:00
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.
14 lines
308 B
Diff
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)
|