aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-07 03:20:31 +0000
committerRichard M. Stallman1998-04-07 03:20:31 +0000
commit8dd455e101a55a6eab029e9099dbf5dad517beb2 (patch)
treee08de253b03c2cafd6f8a3b06f02e7fe6770be7f
parent442f5309d93cc12ffde6ea205421e1173478b0ce (diff)
downloademacs-8dd455e101a55a6eab029e9099dbf5dad517beb2.tar.gz
emacs-8dd455e101a55a6eab029e9099dbf5dad517beb2.zip
(install-arch-indep): Fix previous change.
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index bb7b49ec98e..efd1f0fcb5d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -338,10 +338,12 @@ install-arch-indep: mkdir
338 -rm -f ${lispdir}/subdirs.el 338 -rm -f ${lispdir}/subdirs.el
339 $(srcdir)/update-subdirs ${lispdir} 339 $(srcdir)/update-subdirs ${lispdir}
340 -rm -f ${datadir}/emacs/${version}/site-lisp/subdirs.el 340 -rm -f ${datadir}/emacs/${version}/site-lisp/subdirs.el
341 echo "(normal-top-level-add-subdirs-to-load-path)" \ 341 (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
342 echo " (normal-top-level-add-subdirs-to-load-path))") \
342 > ${datadir}/emacs/${version}/site-lisp/subdirs.el 343 > ${datadir}/emacs/${version}/site-lisp/subdirs.el
343 -rm -f ${datadir}/emacs/site-lisp/subdirs.el 344 -rm -f ${datadir}/emacs/site-lisp/subdirs.el
344 echo "(normal-top-level-add-subdirs-to-load-path)" \ 345 (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
346 echo " (normal-top-level-add-subdirs-to-load-path))") \
345 > ${datadir}/emacs/site-lisp/subdirs.el 347 > ${datadir}/emacs/site-lisp/subdirs.el
346 -chmod -R a+r ${COPYDESTS} 348 -chmod -R a+r ${COPYDESTS}
347 if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ 349 if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \