We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f488603 + 90383bd commit ea5cc3bCopy full SHA for ea5cc3b
Makefile
@@ -23,13 +23,7 @@ INSTALL_INFO = install-info
23
#
24
# This is particularly useful when EMACS is set in ~/.bash_profile
25
26
-EMACS := $(shell echo "$${EMACS:-emacs}")
27
-
28
-# Emacs itself sets the $EMACS environment variable to t if it is not
29
-# present, so we should ignore the variable if this is its value.
30
-ifeq ($(EMACS),t)
31
-EMACS := emacs
32
-endif
+EMACS := $(shell which "$${EMACS}" || which "emacs")
33
34
EFLAGS = --eval "(add-to-list 'load-path (expand-file-name \"tests/compat\") 'append)" \
35
--eval "(when (< emacs-major-version 24) \
0 commit comments