]> git.eshelyaron.com Git - emacs.git/commitdiff
* Do not compile `comp-cstr.el` in vanilla builds
authorAndrea Corallo <akrl@sdf.org>
Fri, 4 Dec 2020 21:45:59 +0000 (22:45 +0100)
committerAndrea Corallo <akrl@sdf.org>
Fri, 4 Dec 2020 22:23:32 +0000 (23:23 +0100)
* lisp/Makefile.in (compile-targets): Filter out 'comp-cstr.elc'
in vanilla builds.

lisp/Makefile.in

index 5fec921b072ffd18b54c31ba08b566ceb1ff0b32..c6a1799e368ebfc7ae10f65c324d243469abcd76 100644 (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