diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-06-01 03:46:31 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-06-01 03:46:31 +0000 |
commit | ad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365 (patch) | |
tree | e32869d37ee3f06dd22aef53747ac5a69dfe0172 /Makefile.in | |
parent | cadf50ff82951ce01ca4a57e5388c8cfe5b54d02 (diff) | |
download | emacs-ad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365.tar.gz |
(install-arch-indep): Don't die if site-lisp/ isn't writable.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 40de0d3d63d..7b78f9c0255 100644 --- a/Makefile.in +++ b/Makefile.in @@ -346,14 +346,14 @@ install-arch-indep: mkdir > ${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} ..." ; \ |