[PATCH 1/2] fix compilation without emacs
Tomi Valkeinen
tomi.valkeinen at iki.fi
Mon Nov 18 21:10:30 PST 2013
If emacs is not installed, the following error is printed while
compiling:
/bin/sh: 1: emacs: not found
This patch fixes the build.
It might be better to exclude the whole emacs directory from build when
compiling without emacs, but that's a bigger change.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen at iki.fi>
---
emacs/Makefile.local | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index 92467a3..0fcf64c 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -24,6 +24,7 @@ emacs_images := \
emacs_bytecode = $(emacs_sources:.el=.elc)
+ifeq ($(WITH_EMACS),1)
# Because of defmacro's and defsubst's, we have to account for load
# dependencies between Elisp files when byte compiling. Otherwise,
# the byte compiler may load an old .elc file when processing a
@@ -39,7 +40,6 @@ CLEAN+=$(dir)/.eldeps $(dir)/.eldeps.tmp
%.elc: %.el $(global_deps)
$(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $<
-ifeq ($(WITH_EMACS),1)
ifeq ($(HAVE_EMACS),1)
all: $(emacs_bytecode)
endif
--
1.8.3.2
More information about the notmuch
mailing list