From 50d7ce09c6e12027b598b468558a9f0b7b3da8d3 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 25 May 2000 16:40:12 +0000 Subject: [PATCH] * Makefile.in (install-arch-dep): Install fns-*.el only if it exists; it won't in the CANNOT_DUMP case. --- ChangeLog | 5 +++++ Makefile.in | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 224c9e264e5..213b6aa8826 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 --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. -- 2.39.5