0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:36:26 +00:00

disable VC for batch evaluation

* mk/default.mk: Disable VC during batch evaluation.

This speeds up file handling, especially on Windows where Git can be
very slow.
This commit is contained in:
Achim Gratz 2013-03-18 08:11:46 +01:00
parent 63c5bc4425
commit 798a7de9b8

View file

@ -65,7 +65,8 @@ BTEST = $(BATCH) \
# Using emacs in batch mode.
# BATCH = $(EMACS) -batch -vanilla # XEmacs
BATCH = $(EMACS) -batch -Q
BATCH = $(EMACS) -batch -Q \
--eval '(setq vc-handled-backends nil)'
# Emacs must be started in toplevel directory
BATCHO = $(BATCH) \