changeset 29197:c58cb815dcfd

* Makefile.in (install-arch-dep): Install fns-*.el only if it exists; it won't in the CANNOT_DUMP case.
author Ken Raeburn <raeburn@raeburn.org>
date Thu, 25 May 2000 16:40:12 +0000
parents 325d90632ebc
children b3592c1e9ddb
files ChangeLog Makefile.in
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <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.
--- 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.