diff options
| author | Karl Heuer | 1998-06-01 03:46:31 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-06-01 03:46:31 +0000 |
| commit | ad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365 (patch) | |
| tree | e32869d37ee3f06dd22aef53747ac5a69dfe0172 | |
| parent | cadf50ff82951ce01ca4a57e5388c8cfe5b54d02 (diff) | |
| download | emacs-ad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365.tar.gz emacs-ad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365.zip | |
(install-arch-indep): Don't die if site-lisp/ isn't writable.
| -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 | |||
| 346 | > ${datadir}/emacs/${version}/site-lisp/subdirs.el; \ | 346 | > ${datadir}/emacs/${version}/site-lisp/subdirs.el; \ |
| 347 | fi | 347 | fi |
| 348 | chmod a+r ${datadir}/emacs/${version}/site-lisp/subdirs.el | 348 | chmod a+r ${datadir}/emacs/${version}/site-lisp/subdirs.el |
| 349 | if [ -f ${datadir}/emacs/site-lisp/subdirs.el ]; \ | 349 | -if [ -f ${datadir}/emacs/site-lisp/subdirs.el ]; \ |
| 350 | then true; \ | 350 | then true; \ |
| 351 | else \ | 351 | else \ |
| 352 | (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ | 352 | (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ |
| 353 | echo " (normal-top-level-add-subdirs-to-load-path))") \ | 353 | echo " (normal-top-level-add-subdirs-to-load-path))") \ |
| 354 | > ${datadir}/emacs/site-lisp/subdirs.el; \ | 354 | > ${datadir}/emacs/site-lisp/subdirs.el; \ |
| 355 | fi | 355 | fi |
| 356 | chmod a+r ${datadir}/emacs/site-lisp/subdirs.el | 356 | -chmod a+r ${datadir}/emacs/site-lisp/subdirs.el |
| 357 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ | 357 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ |
| 358 | then \ | 358 | then \ |
| 359 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ | 359 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ |