From e5dafc90517e08f34bdc3a265a1e605068e63db2 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 28 Jun 2011 11:42:29 -0700 Subject: [PATCH] Makefile: Make emacs compilation depend on global dependencies. We call these "global_deps" for a reason, after all! Without this, emacs compilation would proceed even if the configure script failed, (such as for a missing dependency). That's undesirable as it can cause the helpful error messages from the configure failure to scroll away. --- emacs/Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/Makefile.local b/emacs/Makefile.local index 10227777..ce0c3f00 100644 --- a/emacs/Makefile.local +++ b/emacs/Makefile.local @@ -20,7 +20,7 @@ emacs_images := \ emacs_bytecode = $(emacs_sources:.el=.elc) -%.elc: %.el +%.elc: %.el $(global_deps) $(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $< ifeq ($(WITH_EMACS),1) -- 2.43.0