From e06eae0ba65a49f4311b56bc4616b66f6e7f78df Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 6 Jun 2016 23:46:40 -0400 Subject: [PATCH] makefile: correct race condition on first install --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0a1bf6af0..7e486dc28 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ REPO_URL="https://github.com/hlissner" all: install # If you run either of these with emacs open, run doom-reload afterwards -install: autoloads _install core/core.elc init.elc -update: autoloads _update core/core.elc init.elc +install: _install core/core.elc init.elc autoloads +update: _update core/core.elc init.elc autoloads autoloads: @$(EMACS) --batch -l init.el --eval '(doom-reload-autoloads)' 2>&1