diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-15 00:25:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-15 00:25:16 +0000 |
commit | d56a1167bc83f4d1566af437bfc3de75e43c3b7c (patch) | |
tree | c02fb670b736b69a04ae599fc66d58725d2f4dcc /Makefile.in | |
parent | e4ade21be29a4fb37e5415fa5176a9013836c2eb (diff) | |
download | emacs-d56a1167bc83f4d1566af437bfc3de75e43c3b7c.tar.gz |
(install-arch-indep): Fix previous change.
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 5073bbf4034..40de0d3d63d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -343,7 +343,7 @@ install-arch-indep: mkdir else \ (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \ echo " (normal-top-level-add-subdirs-to-load-path))") \ - > ${datadir}/emacs/${version}/site-lisp/subdirs.el \ + > ${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 ]; \ @@ -351,7 +351,7 @@ install-arch-indep: mkdir 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 \ + > ${datadir}/emacs/site-lisp/subdirs.el; \ fi chmod a+r ${datadir}/emacs/site-lisp/subdirs.el if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ |