From: Eli Zaretskii Date: Tue, 22 Jun 2021 13:05:35 +0000 (+0300) Subject: Fix "make -j install" X-Git-Tag: emacs-28.0.90~2061 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2966e3acbe6ebd59a69fbdbb0cbf76f6f992f21b;p=emacs.git Fix "make -j install" * Makefile.in (install-eln): Depend on 'lisp', so that people could say "make -j install" without a separate "make" step. (Bug#49099) --- diff --git a/Makefile.in b/Makefile.in index 3facfa59a90..474441fa93c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -753,7 +753,7 @@ install-etc: done ### Install native compiled Lisp files. -install-eln: +install-eln: lisp ifeq ($(HAVE_NATIVE_COMP),yes) find native-lisp -type d -exec $(MKDIR_P) "$(ELN_DESTDIR){}" \; ; \ find native-lisp -type f -exec ${INSTALL_DATA} "{}" "$(ELN_DESTDIR){}" \;