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 | bc63f59a6ef323bc362a22003a79840f0842ec22 (patch) | |
tree | afabdf343bd8e9e64ca23e753ef3c53adaf816cd /Makefile.in | |
parent | 0b93aa5389b02bb00632a04ef5776f1e99d8b02b (diff) | |
download | emacs-bc63f59a6ef323bc362a22003a79840f0842ec22.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 \ |