]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix "make -j install"
authorEli Zaretskii <eliz@gnu.org>
Tue, 22 Jun 2021 13:05:35 +0000 (16:05 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 22 Jun 2021 13:05:35 +0000 (16:05 +0300)
* Makefile.in (install-eln): Depend on 'lisp', so that people
could say "make -j install" without a separate "make" step.
(Bug#49099)

Makefile.in

index 3facfa59a90e41b39740d76c4220f89f26f52adf..474441fa93c3ea8ed7a2f9ac4e110ba48fc2e952 100644 (file)
@@ -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){}" \;