From 12c51a38ddc0535e528a9862210ad89135a490fa Mon Sep 17 00:00:00 2001 From: Leif Walsh Date: Wed, 11 Jan 2012 11:21:42 -0500 Subject: [PATCH] fix makefile to use an EMACS variable (so you can compile with other versions of emacs or on osx) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a418e4..1269ea4 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,8 @@ # your vc-git.el here (I store mine in .emacs.d now). VC_GIT_PATH="-L /usr/share/doc/git-core/contrib/emacs -L ~/.emacs.d/" -EMACS_BATCH=emacs -Q --batch "$(VC_GIT_PATH)" -L . +EMACS?=emacs +EMACS_BATCH=$(EMACS) -Q --batch "$(VC_GIT_PATH)" -L . .PHONY: all compile dev tags test clean