diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-06-22 16:05:35 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-06-22 16:05:35 +0300 |
commit | 2966e3acbe6ebd59a69fbdbb0cbf76f6f992f21b (patch) | |
tree | e63fdd596c6627d687a05d5584666e617931b47a /Makefile.in | |
parent | 64dd2b1a2a0a65a571c2bef5a004fd59cd61bb1e (diff) | |
download | emacs-2966e3acbe6ebd59a69fbdbb0cbf76f6f992f21b.tar.gz |
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)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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){}" \; |