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
1 changed files with 2 additions and 1 deletions

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) \