aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn2000-05-25 16:40:12 +0000
committerKen Raeburn2000-05-25 16:40:12 +0000
commit50d7ce09c6e12027b598b468558a9f0b7b3da8d3 (patch)
tree410bd484ea6a09ac560f85124bf9fba1d7ad185c
parentd2af47dfec36a1b8f2a952cf837088078b8faedc (diff)
downloademacs-50d7ce09c6e12027b598b468558a9f0b7b3da8d3.tar.gz
emacs-50d7ce09c6e12027b598b468558a9f0b7b3da8d3.zip
* Makefile.in (install-arch-dep): Install fns-*.el only if it
exists; it won't in the CANNOT_DUMP case.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 224c9e264e5..213b6aa8826 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12000-05-25 Ken Raeburn <raeburn@gnu.org>
2
3 * Makefile.in (install-arch-dep): Install fns-*.el only if it
4 exists; it won't in the CANNOT_DUMP case.
5
12000-05-25 Gerd Moellmann <gerd@gnu.org> 62000-05-25 Gerd Moellmann <gerd@gnu.org>
2 7
3 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere. 8 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
diff --git a/Makefile.in b/Makefile.in
index df3ae4b746f..fe10d6187c6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -307,7 +307,9 @@ install-arch-dep: mkdir
307 -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) 307 -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS)
308 -unset CDPATH; \ 308 -unset CDPATH; \
309 for f in `cd lib-src && echo fns-*.el`; do \ 309 for f in `cd lib-src && echo fns-*.el`; do \
310 ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ 310 if test -r lib-src/$$f ; then \
311 ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \
312 else true; fi ; \
311 done 313 done
312 314
313### Install the files that are machine-independent. 315### Install the files that are machine-independent.