diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-31 23:21:24 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-31 23:21:24 +0000 |
commit | cb73866f1a081e87a8b9112e727c35b9ae03d761 (patch) | |
tree | 222e925de6243cc9b8bec83ccab1612fa0b04361 /Makefile.in | |
parent | e2331f0403901fe6d53da2adfb9003161a405e2b (diff) | |
download | emacs-cb73866f1a081e87a8b9112e727c35b9ae03d761.tar.gz |
(install-arch-indep): Verify ./lisp has simple.el in it
before trying to copy anything from it.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 9a137b2e0df..ac919620e57 100644 --- a/Makefile.in +++ b/Makefile.in @@ -342,6 +342,7 @@ install-arch-indep: mkdir (cd $(docdir); chmod a+r DOC*; rm DOC) \ else true; fi if [ -r ./lisp ] \ + && [ -r ./lisp/simple.el ] \ && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ then \ |