summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-02-12 19:53:16 +0000
committerRichard M. Stallman <rms@gnu.org>1996-02-12 19:53:16 +0000
commit6c64823cb85231791f3e7f93a574ff37c48a80f4 (patch)
tree65298f5edba09e93ad79dd7b9c158fe8f5ae28b9 /Makefile.in
parent9cfca740448d7e5d25ffbe703dd26e65e75c799e (diff)
downloademacs-6c64823cb85231791f3e7f93a574ff37c48a80f4.tar.gz
(install-arch-indep): Install info/ccmode*.
(install-arch-indep): Copy build-dir's lisp subdir to lispdir. Protect against /bin/pwd returning null string.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 75d6546949f..ea322f3c507 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -353,6 +353,12 @@ install-arch-indep: mkdir
(cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \
(cd $(docdir); chmod a+r DOC*; rm DOC) \
else true; fi
+ if [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \
+ && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \
+ then \
+ echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
+ (cd lisp; tar -cf - *.el *.elc)|(cd ${lispdir}; umask 0; tar -xvf - ); \
+ else true; fi
thisdir=`/bin/pwd`; \
if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
then \
@@ -364,7 +370,7 @@ install-arch-indep: mkdir
cd ${srcdir}/info ; \
(cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \
(cd $${thisdir}; chmod a+r ${infodir}/dir); \
- for f in cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \
+ for f in ccmode* cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \
(cd $${thisdir}; \
${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \
chmod a+r ${infodir}/$$f); \