Skip to content

Commit 7649af3

Browse files
committed
Merge pull request #1308 from fice-t/make
Don't message when EMACS shell variable is void
2 parents 2f681cc + fc04a19 commit 7649af3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ INSTALL_INFO = install-info
2323
#
2424
# This is particularly useful when EMACS is set in ~/.bash_profile
2525
#
26-
EMACS := $(shell which "$${EMACS}" || which "emacs")
26+
EMACS := $(shell which "$${EMACS}" 2> /dev/null || which "emacs")
2727
EMACS_VERSION := $(shell "$(EMACS)" -Q --batch --eval '(princ emacs-version)')
2828

2929
EFLAGS = --eval "(add-to-list 'load-path (expand-file-name \"tests/compat\") 'append)" \

0 commit comments

Comments
 (0)