diff options
| author | Ken Raeburn | 2000-05-25 16:40:12 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2000-05-25 16:40:12 +0000 |
| commit | 50d7ce09c6e12027b598b468558a9f0b7b3da8d3 (patch) | |
| tree | 410bd484ea6a09ac560f85124bf9fba1d7ad185c | |
| parent | d2af47dfec36a1b8f2a952cf837088078b8faedc (diff) | |
| download | emacs-50d7ce09c6e12027b598b468558a9f0b7b3da8d3.tar.gz emacs-50d7ce09c6e12027b598b468558a9f0b7b3da8d3.zip | |
* Makefile.in (install-arch-dep): Install fns-*.el only if it
exists; it won't in the CANNOT_DUMP case.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 8 insertions, 1 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-05-25 Ken Raeburn <raeburn@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-arch-dep): Install fns-*.el only if it | ||
| 4 | exists; it won't in the CANNOT_DUMP case. | ||
| 5 | |||
| 1 | 2000-05-25 Gerd Moellmann <gerd@gnu.org> | 6 | 2000-05-25 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * Makefile.in: Ignore exit status of `unset CDPATH' everywhere. | 8 | * 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 | |||
| 307 | -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) | 307 | -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) |
| 308 | -unset CDPATH; \ | 308 | -unset CDPATH; \ |
| 309 | for f in `cd lib-src && echo fns-*.el`; do \ | 309 | for f in `cd lib-src && echo fns-*.el`; do \ |
| 310 | ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ | 310 | if test -r lib-src/$$f ; then \ |
| 311 | ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ | ||
| 312 | else true; fi ; \ | ||
| 311 | done | 313 | done |
| 312 | 314 | ||
| 313 | ### Install the files that are machine-independent. | 315 | ### Install the files that are machine-independent. |