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:
parent
63c5bc4425
commit
798a7de9b8
|
@ -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) \
|
||||
|
|
Loading…
Reference in New Issue