aboutsummaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2022-03-29 14:03:50 +0200
committerJonas Bernoulli <jonas@bernoul.li>2022-03-29 14:03:50 +0200
commit0154391fa24538347d76bd64d3879fb68237f851 (patch)
tree651c0fc0c7b8acfa7d26794b7adcadcdd9e1ca03 /test/Makefile
parent6f5f72bc9887af326e8dbdca67c00fd5713fe797 (diff)
make: Rename EMACSBIN variable to EMACS
I've been doing that for a long time for many of my other packages and nobody reported an issue, but if someone is trying to build magit by running make in a terminal running inside emacs and that uses bash 4.3 or older, then that would fail now. On the other hand more people likely try "EMACS=emacs-26.1 make" and then wonder why that doesn't work. (The new variable for indicating to a shell that it is running inside emacs is INSIDE_EMACS.)
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 5c8d3cb..c921c55 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -9,6 +9,6 @@ test:
(ert-run-tests-batch-and-exit))"
test-interactive:
- @$(EMACSBIN) -Q $(LOAD_PATH) --eval "(progn\
+ @$(EMACS) -Q $(LOAD_PATH) --eval "(progn\
(load-file \"$(TOP)test/magit-tests.el\")\
(ert t))"