]> git.eshelyaron.com Git - emacs.git/commitdiff
* Makefile.in (install-arch-dep): Install fns-*.el only if it
authorKen Raeburn <raeburn@raeburn.org>
Thu, 25 May 2000 16:40:12 +0000 (16:40 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Thu, 25 May 2000 16:40:12 +0000 (16:40 +0000)
exists; it won't in the CANNOT_DUMP case.

ChangeLog
Makefile.in

index 224c9e264e58f7dce876b734a3b695cb3ddd7e98..213b6aa88261f78e5b97d2614df8d0f9bdd9e1ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index df3ae4b746fc3c5b2fe9cd288a8ee15fc0e6832c..fe10d6187c63f9920e2f05a00cc4f7679b374ba3 100644 (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.