diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 4 |
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 @@ +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. 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 -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. |