]> code.delx.au - gnu-emacs/blobdiff - Makefile.in
(reset-language-environment): Reset coding-category-utf-8 to
[gnu-emacs] / Makefile.in
index 76a42af7cc0336665e517ebc0d5cbbc4c26a5a80..863d04c96edd9041d4e83846cec1e8bf3dc1389c 100644 (file)
@@ -338,7 +338,8 @@ install-arch-indep: mkdir info
          && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
          && (echo "Copying $${dir} to $${dest}..." ; \
              (cd $${dir}; tar -cf - . ) \
-               |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \
+               | (cd $${dest}; umask 022; \
+                   tar -xvf - && cat > /dev/null) || exit 1; \
              for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \
                chmod a+rx $${subdir} ; \
                rm -rf $${subdir}/RCS ; \
@@ -375,7 +376,7 @@ install-arch-indep: mkdir info
        then \
           echo "Copying etc/DOC-* to ${docdir} ..." ; \
           (cd ./etc; tar -cf - DOC*) \
-            |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null); \
+            |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \
           (cd $(docdir); chmod a+r DOC*; rm DOC); \
        else true; fi
        -unset CDPATH; \
@@ -386,7 +387,7 @@ install-arch-indep: mkdir info
        then \
           echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
           (cd lisp; tar -cf - *.el *.elc) \
-            |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null); \
+            |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \
        else true; fi
        -unset CDPATH; \
        thisdir=`/bin/pwd`; \
@@ -400,7 +401,7 @@ install-arch-indep: mkdir info
              chmod a+r ${infodir}/dir); \
           fi; \
           cd ${srcdir}/info ; \
-          for f in ada-mode* autotype* ccmode* cl* dired-x* ebrowse* ediff* efaq* emacs* eudc* forms* gnus* idlwave* info* message* mh-e* pcl-cvs* reftex* sc* vip* widget* woman*; do \
+          for f in ada-mode* autotype* ccmode* cl* dired-x* ebrowse* ediff* efaq* emacs* eshell* eudc* forms* gnus* idlwave* info* message* mh-e* pcl-cvs* reftex* sc* speedbar* vip* widget* woman*; do \
             (cd $${thisdir}; \
              ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \
              chmod a+r ${infodir}/$$f); \
@@ -410,9 +411,9 @@ install-arch-indep: mkdir info
        thisdir=`/bin/pwd`; \
        if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
        then \
-         for f in ada-mode autotype ccmode cl dired-x ebrowse ediff efaq emacs emacs-mime eudc forms gnus idlwave info message mh-e pcl-cvs reftex sc vip viper widget woman; do \
+         for f in ada-mode autotype ccmode cl dired-x ebrowse ediff efaq emacs emacs-mime eshell eudc forms gnus idlwave info message mh-e pcl-cvs reftex sc speedbar vip viper widget woman; do \
            (cd $${thisdir}; \
-            ${INSTALL_INFO} --dir-file=${infodir}/dir --info-file=${infodir}/$$f); \
+            ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/$$f); \
          done; \
        else true; fi
        -chmod -R a+r ${datadir}/emacs ${COPYDESTS} ${infodir}
@@ -603,9 +604,9 @@ relock:
        (cd lwlib; chmod u+w *.[ch] Makefile README)
        (cd src; $(MAKE) $(MFLAGS) relock)
 
-TAGS tags:     lib-src src
-       # The src subdir knows how to do the right thing
-       # even when the build directory and source dir are different.
+# The src subdir knows how to do the right thing
+# even when the build directory and source dir are different.
+TAGS tags: lib-src src
        cd src; $(MAKE) tags
 
 check:
@@ -616,10 +617,10 @@ dist:
 
 .PHONY: info dvi dist check html
 force-info:
+# Note that man/Makefile knows how to
+# put the info files in $(srcdir),
+# so we can do ok running make in the build dir.
 info: force-info
-       # Note that man/Makefile knows how to
-       # put the info files in $(srcdir),
-       # so we can do ok running make in the build dir.
        (cd man; $(MAKE) $(MFLAGS) info)
 dvi:
        (cd man; $(MAKE) $(MFLAGS) dvi)