diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2000-05-25 16:40:12 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2000-05-25 16:40:12 +0000 |
commit | 50d7ce09c6e12027b598b468558a9f0b7b3da8d3 (patch) | |
tree | 410bd484ea6a09ac560f85124bf9fba1d7ad185c /Makefile.in | |
parent | d2af47dfec36a1b8f2a952cf837088078b8faedc (diff) | |
download | emacs-50d7ce09c6e12027b598b468558a9f0b7b3da8d3.tar.gz |
* Makefile.in (install-arch-dep): Install fns-*.el only if it
exists; it won't in the CANNOT_DUMP case.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
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. |