* Do not compile comp-cstr.el in vanilla builds

* lisp/Makefile.in (compile-targets): Filter out 'comp-cstr.elc'
	in vanilla builds.
This commit is contained in:
Andrea Corallo
2020-12-04 22:45:59 +01:00
parent 39bdb3f6f5
commit eb8d15547b

View File

@@ -342,7 +342,7 @@ compile-first: $(COMPILE_FIRST)
# Do not build comp.el unless necessary not to exceed max-specpdl-size and
# max-lisp-eval-depth in normal builds.
ifneq ($(HAVE_NATIVE_COMP),yes)
compile-targets: $(filter-out ./emacs-lisp/comp.elc,$(TARGETS))
compile-targets: $(filter-out ./emacs-lisp/comp-cstr.elc,$(filter-out ./emacs-lisp/comp.elc,$(TARGETS)))
else
compile-targets: $(TARGETS)
endif