tag: 1.2
commit 9bf88ee7076b139b34edbe8c738c6bdad6f04600
Author: João Távora <[email protected]>
Commit: João Távora <[email protected]>
Allow tests to be run with custom jsonrpc.el
make check JSONRPC='-l ~/Source/Emacs/emacs-master/lisp/jsonrpc.el' is
an example.
* Makefile (JSONRPC): Make this a recursive variable.
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index a9d63e9..ae77e29 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ LOAD_PATH=-L .
ELFILES := eglot.el eglot-tests.el
ELCFILES := $(ELFILES:.el=.elc)
-JSONRPC :=--eval '(package-initialize)' \
+JSONRPC ?=--eval '(package-initialize)' \
--eval '(package-refresh-contents)' \
--eval '(package-install (quote jsonrpc))'