aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-09-09 19:23:26 +0200
committerKim Alvefur <zash@zash.se>2018-09-09 19:23:26 +0200
commitb84cf6006032596823f6bf2b0e3003d3d640abf0 (patch)
treeeaec818db25e0f22bc081cceec514a9fe7c8f95b /GNUmakefile
parent86444b030343247e579c0118874228c5337ca465 (diff)
downloadprosody-b84cf6006032596823f6bf2b0e3003d3d640abf0.tar.gz
prosody-b84cf6006032596823f6bf2b0e3003d3d640abf0.zip
GNUmakefile: Allow overriding path to luacheck
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 69fa12f3..4836df85 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -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: