From ad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 1 Jun 1998 03:46:31 +0000 Subject: [PATCH] (install-arch-indep): Don't die if site-lisp/ isn't writable. --- Makefile.in | 4 ++-- 1 file 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} ..." ; \ -- 2.39.2