# HG changeset patch # User Ken Raeburn # Date 959272812 0 # Node ID c58cb815dcfdc2ac9fdb1d72ec0300ee0df3e94b # Parent 325d90632ebc1eb0db8d1c63f7178325625f198e * Makefile.in (install-arch-dep): Install fns-*.el only if it exists; it won't in the CANNOT_DUMP case. diff -r 325d90632ebc -r c58cb815dcfd ChangeLog --- a/ChangeLog Thu May 25 16:32:19 2000 +0000 +++ b/ChangeLog Thu May 25 16:40:12 2000 +0000 @@ -1,3 +1,8 @@ +2000-05-25 Ken Raeburn + + * 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 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere. diff -r 325d90632ebc -r c58cb815dcfd Makefile.in --- a/Makefile.in Thu May 25 16:32:19 2000 +0000 +++ b/Makefile.in Thu May 25 16:40:12 2000 +0000 @@ -307,7 +307,9 @@ -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.