GNUmakefile: Allow overriding path to luacheck
authorKim Alvefur <zash@zash.se>
Sun, 09 Sep 2018 19:23:26 +0200
changeset 9290 420e0bf55bf5
parent 9289 992e986589b8
child 9291 1330b5290a10
GNUmakefile: Allow overriding path to luacheck
GNUmakefile
--- a/GNUmakefile	Sun Sep 09 17:47:47 2018 +0200
+++ b/GNUmakefile	Sun Sep 09 19:23:26 2018 +0200
@@ -19,6 +19,8 @@
 MKDIR=install -d
 MKDIR_PRIVATE=$(MKDIR) -m750
 
+LUACHECK=luacheck
+
 .PHONY: all test coverage clean install
 
 all: prosody.install prosodyctl.install prosody.cfg.lua.install prosody.version
@@ -77,7 +79,7 @@
 	@echo "To inspect individual files run: luacov-console -l FILENAME"
 
 lint:
-	luacheck -q $$(hg files -I '**.lua') prosody prosodyctl
+	$(LUACHECK) -q $$(hg files -I '**.lua') prosody prosodyctl
 	@echo $$(sed -n '/^exclude_files/,/^}/p;' .luacheckrc | sed '1d;$d' | wc -l) files ignored
 
 util/%.so: