GNUmakefile: Allow overriding path to luacheck

This commit is contained in:
Kim Alvefur 2018-09-09 19:23:26 +02:00
parent 86444b0303
commit b84cf60060

View file

@ -19,6 +19,8 @@ INSTALL_EXEC=$(INSTALL) -m755
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 @@ coverage:
@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: