# HG changeset patch # User Karl Heuer # Date 896672791 0 # Node ID eed3a1470e8318551990154e2b77e9a2cd2bc507 # Parent 599c0971ae49c5a6bbbb2585b2d9c734d1aba93b (install-arch-indep): Don't die if site-lisp/ isn't writable. diff -r 599c0971ae49 -r eed3a1470e83 Makefile.in --- a/Makefile.in Mon Jun 01 03:32:52 1998 +0000 +++ b/Makefile.in Mon Jun 01 03:46:31 1998 +0000 @@ -346,14 +346,14 @@ > ${datadir}/emacs/${version}/site-lisp/subdirs.el; \ fi chmod a+r ${datadir}/emacs/${version}/site-lisp/subdirs.el - if [ -f ${datadir}/emacs/site-lisp/subdirs.el ]; \ + -if [ -f ${datadir}/emacs/site-lisp/subdirs.el ]; \ then true; \ else \ (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ echo " (normal-top-level-add-subdirs-to-load-path))") \ > ${datadir}/emacs/site-lisp/subdirs.el; \ fi - chmod a+r ${datadir}/emacs/site-lisp/subdirs.el + -chmod a+r ${datadir}/emacs/site-lisp/subdirs.el if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ then \ echo "Copying etc/DOC-* to ${docdir} ..." ; \