summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-12-04 22:45:59 +0100
committerAndrea Corallo <akrl@sdf.org>2020-12-04 23:23:32 +0100
commiteb8d15547bfc0821232af12c1ce193e40cdf16c0 (patch)
tree4c8f06105acb3035d02212d76957922dc1a85b31 /lisp
parent39bdb3f6f54cdba80f1efbecab4bbb08428e7cc8 (diff)
downloademacs-eb8d15547bfc0821232af12c1ce193e40cdf16c0.tar.gz
emacs-eb8d15547bfc0821232af12c1ce193e40cdf16c0.tar.bz2
emacs-eb8d15547bfc0821232af12c1ce193e40cdf16c0.zip
* Do not compile `comp-cstr.el` in vanilla builds
* lisp/Makefile.in (compile-targets): Filter out 'comp-cstr.elc' in vanilla builds.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 5fec921b072..c6a1799e368 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -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