branch: elpa/beancount commit e98047d7154bb87c9b1ddd60ed0c1a029e4429aa Author: Daniele Nicolodi <dani...@grinta.net> Commit: Daniele Nicolodi <dani...@grinta.net>
Tweak Makefile Do not load custimizations while byte-compiling or runnint the tests. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e80b067359..22e1c72258 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ SRC = beancount.el TESTS = beancount-tests.el compile: $(SRC) - $(EMACS) -batch -f batch-byte-compile $< + $(EMACS) -Q -batch -f batch-byte-compile $< test: - $(EMACS) -batch -L . -l ert -l $(TESTS) -f ert-run-tests-batch-and-exit + $(EMACS) -Q -batch -L . -l ert -l $(TESTS) -f ert-run-tests-batch-and-exit