1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

* Makefile.in (install-arch-dep): Install fns-*.el only if it

exists; it won't in the CANNOT_DUMP case.
This commit is contained in:
Ken Raeburn 2000-05-25 16:40:12 +00:00
parent d2af47dfec
commit 50d7ce09c6
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-05-25 Ken Raeburn <raeburn@gnu.org>
* Makefile.in (install-arch-dep): Install fns-*.el only if it
exists; it won't in the CANNOT_DUMP case.
2000-05-25 Gerd Moellmann <gerd@gnu.org>
* Makefile.in: Ignore exit status of `unset CDPATH' everywhere.

View File

@ -307,7 +307,9 @@ install-arch-dep: mkdir
-ln ${bindir}/emacs-${version} ${bindir}/$(EMACS)
-unset CDPATH; \
for f in `cd lib-src && echo fns-*.el`; do \
${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \
if test -r lib-src/$$f ; then \
${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \
else true; fi ; \
done
### Install the files that are machine-independent.